public static enum JsonParser.Token extends Enum<JsonParser.Token>
| Enum Constant and Description |
|---|
BOOLEAN |
CLOSE_ARRAY |
CLOSE_OBJECT |
COLON |
COMMA |
DOUBLE |
NULL |
OPEN_ARRAY |
OPEN_OBJECT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static JsonParser.Token |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonParser.Token[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonParser.Token OPEN_OBJECT
public static final JsonParser.Token CLOSE_OBJECT
public static final JsonParser.Token OPEN_ARRAY
public static final JsonParser.Token CLOSE_ARRAY
public static final JsonParser.Token COLON
public static final JsonParser.Token COMMA
public static final JsonParser.Token STRING
public static final JsonParser.Token DOUBLE
public static final JsonParser.Token BOOLEAN
public static final JsonParser.Token NULL
public static JsonParser.Token[] values()
for (JsonParser.Token c : JsonParser.Token.values()) System.out.println(c);
public static JsonParser.Token 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 © 2014. All rights reserved.