| Enum Constant and Description |
|---|
BOOLEAN |
END |
END_COLLECTION |
END_MAP |
NAME |
NULL |
NUMBER |
START_COLLECTION |
START_MAP |
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 BOOLEAN
public static final JsonType NAME
public static final JsonType NULL
public static final JsonType NUMBER
public static final JsonType START_MAP
public static final JsonType END_MAP
public static final JsonType START_COLLECTION
public static final JsonType END_COLLECTION
public static final JsonType STRING
public static final JsonType END
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