Package org.gephi.io.importer.api
Enum PropertiesAssociations.NodeProperties
- java.lang.Object
-
- java.lang.Enum<PropertiesAssociations.NodeProperties>
-
- org.gephi.io.importer.api.PropertiesAssociations.NodeProperties
-
- All Implemented Interfaces:
Serializable
,Comparable<PropertiesAssociations.NodeProperties>
- Enclosing class:
- PropertiesAssociations
public static enum PropertiesAssociations.NodeProperties extends Enum<PropertiesAssociations.NodeProperties>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PropertiesAssociations.NodeProperties
valueOf(String name)
Returns the enum constant of this type with the specified name.static PropertiesAssociations.NodeProperties[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
X
public static final PropertiesAssociations.NodeProperties X
-
Y
public static final PropertiesAssociations.NodeProperties Y
-
Z
public static final PropertiesAssociations.NodeProperties Z
-
R
public static final PropertiesAssociations.NodeProperties R
-
G
public static final PropertiesAssociations.NodeProperties G
-
B
public static final PropertiesAssociations.NodeProperties B
-
COLOR
public static final PropertiesAssociations.NodeProperties COLOR
-
SIZE
public static final PropertiesAssociations.NodeProperties SIZE
-
ID
public static final PropertiesAssociations.NodeProperties ID
-
LABEL
public static final PropertiesAssociations.NodeProperties LABEL
-
FIXED
public static final PropertiesAssociations.NodeProperties FIXED
-
START
public static final PropertiesAssociations.NodeProperties START
-
END
public static final PropertiesAssociations.NodeProperties END
-
START_OPEN
public static final PropertiesAssociations.NodeProperties START_OPEN
-
END_OPEN
public static final PropertiesAssociations.NodeProperties END_OPEN
-
-
Method Detail
-
values
public static PropertiesAssociations.NodeProperties[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PropertiesAssociations.NodeProperties c : PropertiesAssociations.NodeProperties.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PropertiesAssociations.NodeProperties valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-