public static enum JsonUtils.JsonToken extends Enum<JsonUtils.JsonToken>
| Enum Constant and Description |
|---|
array
JSON array "key":[value1, ...
|
key
Key.
|
object
JSON object, "key":{value1, ...
|
value
Value.
|
| Modifier and Type | Method and Description |
|---|---|
static JsonUtils.JsonToken |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonUtils.JsonToken[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonUtils.JsonToken object
public static final JsonUtils.JsonToken array
public static final JsonUtils.JsonToken key
public static final JsonUtils.JsonToken value
public static JsonUtils.JsonToken[] values()
for (JsonUtils.JsonToken c : JsonUtils.JsonToken.values()) System.out.println(c);
public static JsonUtils.JsonToken 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 © 2021 eXo Platform SAS. All Rights Reserved.