public static enum Node.NodeType extends Enum<Node.NodeType> implements Node.ValueExtractor
| Enum Constant and Description |
|---|
ARRAY |
BOOLEAN |
NULL |
NUMBER |
OBJECT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static Node.NodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Node.NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetValuepublic static final Node.NodeType OBJECT
public static final Node.NodeType ARRAY
public static final Node.NodeType STRING
public static final Node.NodeType NUMBER
public static final Node.NodeType BOOLEAN
public static final Node.NodeType NULL
public static Node.NodeType[] values()
for (Node.NodeType c : Node.NodeType.values()) System.out.println(c);
public static Node.NodeType 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 © 2017. All Rights Reserved.