|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JsonReader | |
|---|---|
| com.google.gson | This package provides the Gson class to convert Json to Java and
vice-versa. |
| com.google.gson.internal | Do NOT use any class in this package as they are meant for internal use in Gson. |
| com.google.gson.internal.bind | |
| Uses of JsonReader in com.google.gson |
|---|
| Methods in com.google.gson with parameters of type JsonReader | ||
|---|---|---|
|
Gson.fromJson(JsonReader reader,
Type typeOfT)
Reads the next JSON value from reader and convert it to an object
of type typeOfT. |
|
JsonElement |
JsonParser.parse(JsonReader json)
Returns the next value from the JSON stream as a parse tree. |
|
abstract T |
TypeAdapter.read(JsonReader in)
Reads one JSON value (an array, object, string, number, boolean or null) and converts it to a Java object. |
|
| Uses of JsonReader in com.google.gson.internal |
|---|
| Methods in com.google.gson.internal with parameters of type JsonReader | |
|---|---|
static JsonElement |
Streams.parse(JsonReader reader)
Takes a reader in any state and returns the next value as a JsonElement. |
abstract void |
JsonReaderInternalAccess.promoteNameToValue(JsonReader reader)
Changes the type of the current property name token to a string value. |
| Uses of JsonReader in com.google.gson.internal.bind |
|---|
| Subclasses of JsonReader in com.google.gson.internal.bind | |
|---|---|
class |
JsonTreeReader
This reader walks the elements of a JsonElement as if it was coming from a character stream. |
| Methods in com.google.gson.internal.bind with parameters of type JsonReader | |
|---|---|
Time |
TimeTypeAdapter.read(JsonReader in)
|
Date |
SqlDateTypeAdapter.read(JsonReader in)
|
T |
ReflectiveTypeAdapterFactory.Adapter.read(JsonReader in)
|
Object |
ObjectTypeAdapter.read(JsonReader in)
|
Date |
DateTypeAdapter.read(JsonReader in)
|
Object |
ArrayTypeAdapter.read(JsonReader in)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||