public enum ContinuousEditorType extends Enum<ContinuousEditorType>
Module: vizmap-gui-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>vizmap-gui-api</artifactId> </dependency>
Enum Constant and Description |
---|
COLOR
Used for mapping continuous attribute values to
color visual property types such as Node Color.
|
CONTINUOUS
Used for mapping continuous attribute values to
continuous visual property types such as Node Size.
|
DISCRETE
Used for mapping continuous attribute values to
discrete visual property types such as Node Shape.
|
Modifier and Type | Method and Description |
---|---|
static ContinuousEditorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContinuousEditorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContinuousEditorType DISCRETE
public static final ContinuousEditorType CONTINUOUS
public static final ContinuousEditorType COLOR
public static ContinuousEditorType[] values()
for (ContinuousEditorType c : ContinuousEditorType.values()) System.out.println(c);
public static ContinuousEditorType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright 2011-2015 Cytoscape Consortium. All rights reserved.