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