Android APIs
public final enum

JsonToken

extends Enum<JsonToken>
java.lang.Object
   ↳ java.lang.Enum<android.util.JsonToken>
     ↳ android.util.JsonToken

Class Overview

A structure, name or value type in a JSON-encoded string.

Summary

Enum Values
JsonToken  BEGIN_ARRAY  The opening of a JSON array. 
JsonToken  BEGIN_OBJECT  The opening of a JSON object. 
JsonToken  BOOLEAN  A JSON true or false
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 null
JsonToken  NUMBER  A JSON number represented in this API by a Java double, long, or int
JsonToken  STRING  A JSON string. 
Public Methods
static JsonToken valueOf(String name)
final static JsonToken[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final JsonToken BEGIN_ARRAY

Added in API level 11

The opening of a JSON array. Written using beginObject() and read using beginObject().

public static final JsonToken BEGIN_OBJECT

Added in API level 11

The opening of a JSON object. Written using beginObject() and read using beginObject().

public static final JsonToken BOOLEAN

Added in API level 11

A JSON true or false.

public static final JsonToken END_ARRAY

Added in API level 11

The closing of a JSON array. Written using endArray() and read using endArray().

public static final JsonToken END_DOCUMENT

Added in API level 11

The end of the JSON stream. This sentinel value is returned by peek() to signal that the JSON-encoded value has no more tokens.

public static final JsonToken END_OBJECT

Added in API level 11

The closing of a JSON object. Written using endObject() and read using endObject().

public static final JsonToken NAME

Added in API level 11

A JSON property name. Within objects, tokens alternate between names and their values. Written using name(String) and read using nextName()

public static final JsonToken NULL

Added in API level 11

A JSON null.

public static final JsonToken NUMBER

Added in API level 11

A JSON number represented in this API by a Java double, long, or int.

public static final JsonToken STRING

Added in API level 11

A JSON string.

Public Methods

public static JsonToken valueOf (String name)

Added in API level 11

public static final JsonToken[] values ()

Added in API level 11