public static enum AbstractNodeInfo.DataType extends java.lang.Enum<AbstractNodeInfo.DataType>
| Enum Constant and Description |
|---|
BOOLEAN_STRING |
COLOR_STRING |
DATE_STRING |
INTEGER |
LONG |
NUMERIC_STRING |
TEXT_STRING |
| Modifier and Type | Method and Description |
|---|---|
static AbstractNodeInfo.DataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractNodeInfo.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractNodeInfo.DataType TEXT_STRING
public static final AbstractNodeInfo.DataType BOOLEAN_STRING
public static final AbstractNodeInfo.DataType NUMERIC_STRING
public static final AbstractNodeInfo.DataType DATE_STRING
public static final AbstractNodeInfo.DataType LONG
public static final AbstractNodeInfo.DataType INTEGER
public static final AbstractNodeInfo.DataType COLOR_STRING
public static AbstractNodeInfo.DataType[] values()
for (AbstractNodeInfo.DataType c : AbstractNodeInfo.DataType.values()) System.out.println(c);
public static AbstractNodeInfo.DataType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null