Package | Description |
---|---|
com.google.gson |
This package provides the
Gson class to convert Json to Java and
vice-versa. |
com.google.gson.stream |
Modifier and Type | Method | Description |
---|---|---|
JsonWriter |
Gson.newJsonWriter(Writer writer) |
Returns a new JSON writer configured for the settings on this Gson instance.
|
Modifier and Type | Method | Description |
---|---|---|
void |
Gson.toJson(JsonElement jsonElement,
JsonWriter writer) |
Writes the JSON for
jsonElement to writer . |
void |
Gson.toJson(Object src,
Type typeOfSrc,
JsonWriter writer) |
Writes the JSON representation of
src of type typeOfSrc to
writer . |
abstract void |
TypeAdapter.write(JsonWriter out,
T value) |
Writes one JSON value (an array, object, string, number, boolean or null)
for
value . |
Modifier and Type | Method | Description |
---|---|---|
JsonWriter |
JsonWriter.beginArray() |
Begins encoding a new array.
|
JsonWriter |
JsonWriter.beginObject() |
Begins encoding a new object.
|
JsonWriter |
JsonWriter.endArray() |
Ends encoding the current array.
|
JsonWriter |
JsonWriter.endObject() |
Ends encoding the current object.
|
JsonWriter |
JsonWriter.jsonValue(String value) |
Writes
value directly to the writer without quoting or
escaping. |
JsonWriter |
JsonWriter.name(String name) |
Encodes the property name.
|
JsonWriter |
JsonWriter.nullValue() |
Encodes
null . |
JsonWriter |
JsonWriter.value(boolean value) |
Encodes
value . |
JsonWriter |
JsonWriter.value(double value) |
Encodes
value . |
JsonWriter |
JsonWriter.value(long value) |
Encodes
value . |
JsonWriter |
JsonWriter.value(Boolean value) |
Encodes
value . |
JsonWriter |
JsonWriter.value(Number value) |
Encodes
value . |
JsonWriter |
JsonWriter.value(String value) |
Encodes
value . |
Copyright © 2018. All rights reserved.