Uses of Class
com.google.gson.stream.JsonWriter
-
Packages that use JsonWriter Package Description com.google.gson This package provides theGson
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 com.google.gson.stream com.google.gson.typeadapters -
-
Uses of JsonWriter in com.google.gson
Methods in com.google.gson that return JsonWriter Modifier and Type Method Description JsonWriter
Gson. newJsonWriter(Writer writer)
Returns a new JSON writer configured for the settings on this Gson instance.Methods in com.google.gson with parameters of type JsonWriter Modifier and Type Method Description void
Gson. toJson(JsonElement jsonElement, JsonWriter writer)
Writes the JSON forjsonElement
towriter
.void
Gson. toJson(Object src, Type typeOfSrc, JsonWriter writer)
Writes the JSON representation ofsrc
of typetypeOfSrc
towriter
.abstract void
TypeAdapter. write(JsonWriter out, T value)
Writes one JSON value (an array, object, string, number, boolean or null) forvalue
. -
Uses of JsonWriter in com.google.gson.internal
Methods in com.google.gson.internal with parameters of type JsonWriter Modifier and Type Method Description static void
Streams. write(JsonElement element, JsonWriter writer)
Writes the JSON element to the writer, recursively. -
Uses of JsonWriter in com.google.gson.internal.bind
Subclasses of JsonWriter in com.google.gson.internal.bind Modifier and Type Class Description class
JsonTreeWriter
This writer creates a JsonElement.Methods in com.google.gson.internal.bind that return JsonWriter Modifier and Type Method Description JsonWriter
JsonTreeWriter. beginArray()
JsonWriter
JsonTreeWriter. beginObject()
JsonWriter
JsonTreeWriter. endArray()
JsonWriter
JsonTreeWriter. endObject()
JsonWriter
JsonTreeWriter. name(String name)
JsonWriter
JsonTreeWriter. nullValue()
JsonWriter
JsonTreeWriter. value(boolean value)
JsonWriter
JsonTreeWriter. value(double value)
JsonWriter
JsonTreeWriter. value(long value)
JsonWriter
JsonTreeWriter. value(Boolean value)
JsonWriter
JsonTreeWriter. value(Number value)
JsonWriter
JsonTreeWriter. value(String value)
Methods in com.google.gson.internal.bind with parameters of type JsonWriter Modifier and Type Method Description void
ArrayTypeAdapter. write(JsonWriter out, Object array)
void
DateTypeAdapter. write(JsonWriter out, Date value)
void
DefaultDateTypeAdapter. write(JsonWriter out, Date value)
void
NumberTypeAdapter. write(JsonWriter out, Number value)
void
ObjectTypeAdapter. write(JsonWriter out, Object value)
void
ReflectiveTypeAdapterFactory.Adapter. write(JsonWriter out, T value)
void
TreeTypeAdapter. write(JsonWriter out, T value)
-
Uses of JsonWriter in com.google.gson.stream
Methods in com.google.gson.stream that return JsonWriter 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)
Writesvalue
directly to the writer without quoting or escaping.JsonWriter
JsonWriter. name(String name)
Encodes the property name.JsonWriter
JsonWriter. nullValue()
Encodesnull
.JsonWriter
JsonWriter. value(boolean value)
Encodesvalue
.JsonWriter
JsonWriter. value(double value)
Encodesvalue
.JsonWriter
JsonWriter. value(long value)
Encodesvalue
.JsonWriter
JsonWriter. value(Boolean value)
Encodesvalue
.JsonWriter
JsonWriter. value(Number value)
Encodesvalue
.JsonWriter
JsonWriter. value(String value)
Encodesvalue
. -
Uses of JsonWriter in com.google.gson.typeadapters
Methods in com.google.gson.typeadapters with parameters of type JsonWriter Modifier and Type Method Description void
UtcDateTypeAdapter. write(JsonWriter out, Date date)
-