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