public
final
enum
JsonToken
extends Enum<JsonToken>
| java.lang.Object | ||
| ↳ | java.lang.Enum<android.util.JsonToken> | |
| ↳ | android.util.JsonToken | |
A structure, name or value type in a JSON-encoded string.
Enum values | |
|---|---|
JsonToken |
BEGIN_ARRAY
The opening of a JSON array. |
JsonToken |
BEGIN_OBJECT
The opening of a JSON object. |
JsonToken |
BOOLEAN
A JSON |
JsonToken |
END_ARRAY
The closing of a JSON array. |
JsonToken |
END_DOCUMENT
The end of the JSON stream. |
JsonToken |
END_OBJECT
The closing of a JSON object. |
JsonToken |
NAME
A JSON property name. |
JsonToken |
NULL
A JSON |
JsonToken |
NUMBER
A JSON number represented in this API by a Java |
JsonToken |
STRING
A JSON string. |
Public methods | |
|---|---|
static
JsonToken
|
valueOf(String name)
|
static
final
JsonToken[]
|
values()
|
Inherited methods | |
|---|---|
java.lang.Enum
| |
java.lang.Object
| |
java.lang.Comparable
| |
JsonToken BEGIN_ARRAY
The opening of a JSON array. Written using beginObject()
and read using beginObject().
JsonToken BEGIN_OBJECT
The opening of a JSON object. Written using beginObject()
and read using beginObject().
JsonToken END_ARRAY
The closing of a JSON array. Written using endArray()
and read using endArray().
JsonToken END_DOCUMENT
The end of the JSON stream. This sentinel value is returned by peek() to signal that the JSON-encoded value has no more
tokens.
JsonToken END_OBJECT
The closing of a JSON object. Written using endObject()
and read using endObject().
JsonToken NAME
A JSON property name. Within objects, tokens alternate between names and
their values. Written using name(String) and read using nextName()
JsonToken NUMBER
A JSON number represented in this API by a Java double, long, or int.
JsonToken valueOf (String name)
| Parameters | |
|---|---|
name |
String
|
| Returns | |
|---|---|
JsonToken |
|