public static enum LibData.ValueType extends java.lang.Enum<LibData.ValueType>
Enum Constant and Description |
---|
BOOLEAN |
DOUBLE |
EXPR |
INT |
STRING |
UNDEFINED |
Modifier and Type | Method and Description |
---|---|
static LibData.ValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LibData.ValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LibData.ValueType STRING
public static final LibData.ValueType DOUBLE
public static final LibData.ValueType BOOLEAN
public static final LibData.ValueType INT
public static final LibData.ValueType EXPR
public static final LibData.ValueType UNDEFINED
public static LibData.ValueType[] values()
for (LibData.ValueType c : LibData.ValueType.values()) System.out.println(c);
public static LibData.ValueType 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