public enum JsonToken extends Enum<JsonToken>
JSON token in the low-level JSON library.
Static Fields |
|
---|---|
Name | Description |
END_ARRAY |
End of a JSON array (']'). |
END_OBJECT |
End of a JSON object ('}'). |
FIELD_NAME |
JSON field name. |
NOT_AVAILABLE |
Some other token. |
START_ARRAY |
Start of a JSON array ('['). |
START_OBJECT |
Start of a JSON object ('{'). |
VALUE_FALSE |
JSON field |
VALUE_NULL |
JSON |
VALUE_NUMBER_FLOAT |
JSON field number value of an arbitrary-precision decimal number. |
VALUE_NUMBER_INT |
JSON field number value of an integer with an arbitrary number of digits and no fractional part. |
VALUE_STRING |
JSON field string value. |
VALUE_TRUE |
JSON field |
Static Methods |
|
---|---|
Name | Description |
valueOf(String name) |
|
values() |