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