Java com.google.gson.stream JsonToken fields, constructors, methods, implement or subclass

Example usage for Java com.google.gson.stream JsonToken fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gson.stream JsonToken.

The text is from its open source code.

Field

JsonTokenBEGIN_ARRAY
The opening of a JSON array.
JsonTokenEND_ARRAY
The closing of a JSON array.
JsonTokenBEGIN_OBJECT
The opening of a JSON object.
JsonTokenEND_OBJECT
The closing of a JSON object.
JsonTokenNAME
A JSON property name.
JsonTokenSTRING
A JSON string.
JsonTokenNUMBER
A JSON number represented in this API by a Java double , long , or int .
JsonTokenBOOLEAN
A JSON true or false .
JsonTokenNULL
A JSON null .
JsonTokenEND_DOCUMENT
The end of the JSON stream.