Example usage for Java android.util JsonToken fields, constructors, methods, implement or subclass
The text is from its open source code.
JsonToken | BEGIN_ARRAY The opening of a JSON array. |
JsonToken | BEGIN_OBJECT The opening of a JSON object. |
JsonToken | END_OBJECT The closing of a JSON object. |
JsonToken | STRING A JSON string. |
JsonToken | NUMBER A JSON number represented in this API by a Java double , long , or int . |
JsonToken | BOOLEAN A JSON true or false . |
JsonToken | NULL A JSON null . |
boolean | equals(Object obj) Indicates whether some other object is "equal to" this one. |