static enum JsonParser.StructuralToken extends java.lang.Enum<JsonParser.StructuralToken>
| Enum Constant and Description |
|---|
COLON
: U+003A colon
|
COMMA
, U+002C comma
|
LCRBRACKET
{ U+007B left curly bracket
|
LSQBRACKET
[ U+005B left square bracket
|
RCRBRACKET
} U+007D right curly bracket
|
RSQBRACKET
] U+005D right square bracket
|
| Modifier and Type | Field and Description |
|---|---|
char |
CHAR |
| Modifier and Type | Method and Description |
|---|---|
static JsonParser.StructuralToken |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JsonParser.StructuralToken[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonParser.StructuralToken LSQBRACKET
public static final JsonParser.StructuralToken RSQBRACKET
public static final JsonParser.StructuralToken LCRBRACKET
public static final JsonParser.StructuralToken RCRBRACKET
public static final JsonParser.StructuralToken COLON
public static final JsonParser.StructuralToken COMMA
public static JsonParser.StructuralToken[] values()
for (JsonParser.StructuralToken c : JsonParser.StructuralToken.values()) System.out.println(c);
public static JsonParser.StructuralToken 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