Uses of Class
com.google.gson.stream.JsonWriter
Packages that use JsonWriter
Package
Description
This package provides the
Gson class to convert Json to Java and
vice-versa.Do NOT use any class in this package as they are meant for internal use in Gson.
This package provides classes for processing JSON in an efficient streaming way.
-
Uses of JsonWriter in com.google.gson
Methods in com.google.gson that return JsonWriterModifier and TypeMethodDescriptionGson.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 JsonWriterModifier and TypeMethodDescriptionvoidGson.toJson(JsonElement jsonElement, JsonWriter writer) Writes the JSON forjsonElementtowriter.voidGson.toJson(Object src, Type typeOfSrc, JsonWriter writer) Writes the JSON representation ofsrcof typetypeOfSrctowriter.voidGson.FutureTypeAdapter.write(JsonWriter out, T value) abstract voidTypeAdapter.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.graph
Methods in com.google.gson.graph with parameters of type JsonWriterModifier and TypeMethodDescription(package private) voidGraphAdapterBuilder.Element.write(JsonWriter out) -
Uses of JsonWriter in com.google.gson.interceptors
Methods in com.google.gson.interceptors with parameters of type JsonWriterModifier and TypeMethodDescriptionvoidInterceptorFactory.InterceptorAdapter.write(JsonWriter out, T value) -
Uses of JsonWriter in com.google.gson.internal
Methods in com.google.gson.internal with parameters of type JsonWriterModifier and TypeMethodDescriptionstatic voidStreams.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.bindMethods in com.google.gson.internal.bind that return JsonWriterModifier and TypeMethodDescriptionJsonTreeWriter.beginArray()JsonTreeWriter.beginObject()JsonTreeWriter.endArray()JsonTreeWriter.endObject()JsonTreeWriter.nullValue()JsonTreeWriter.value(boolean value) JsonTreeWriter.value(double value) JsonTreeWriter.value(float value) JsonTreeWriter.value(long value) Methods in com.google.gson.internal.bind with parameters of type JsonWriterModifier and TypeMethodDescriptionvoidArrayTypeAdapter.write(JsonWriter out, Object array) voidCollectionTypeAdapterFactory.Adapter.write(JsonWriter out, Collection<E> collection) voidDateTypeAdapter.write(JsonWriter out, Date value) voidDefaultDateTypeAdapter.write(JsonWriter out, Date value) voidMapTypeAdapterFactory.Adapter.write(JsonWriter out, Map<K, V> map) voidNumberTypeAdapter.write(JsonWriter out, Number value) voidObjectTypeAdapter.write(JsonWriter out, Object value) voidReflectiveTypeAdapterFactory.Adapter.write(JsonWriter out, T value) (package private) abstract voidReflectiveTypeAdapterFactory.BoundField.write(JsonWriter writer, Object source) Read this field value from the source, and append its JSON value to the writervoidTreeTypeAdapter.write(JsonWriter out, T value) voidTypeAdapterRuntimeTypeWrapper.write(JsonWriter out, T value) voidTypeAdapters.EnumTypeAdapter.write(JsonWriter out, T value) -
Uses of JsonWriter in com.google.gson.internal.sql
Methods in com.google.gson.internal.sql with parameters of type JsonWriterModifier and TypeMethodDescriptionvoidSqlDateTypeAdapter.write(JsonWriter out, Date value) voidSqlTimestampTypeAdapter.write(JsonWriter out, Timestamp value) voidSqlTimeTypeAdapter.write(JsonWriter out, Time value) -
Uses of JsonWriter in com.google.gson.stream
Methods in com.google.gson.stream that return JsonWriterModifier and TypeMethodDescriptionJsonWriter.beginArray()Begins encoding a new array.JsonWriter.beginObject()Begins encoding a new object.private JsonWriterJsonWriter.close(int empty, int nonempty, char closeBracket) Closes the current scope by appending any necessary whitespace and the given bracket.JsonWriter.endArray()Ends encoding the current array.JsonWriter.endObject()Ends encoding the current object.Writesvaluedirectly to the writer without quoting or escaping.Encodes the property name.JsonWriter.nullValue()Encodesnull.private JsonWriterJsonWriter.open(int empty, char openBracket) Enters a new scope by appending any necessary whitespace and the given bracket.JsonWriter.value(boolean value) Encodesvalue.JsonWriter.value(double value) Encodesvalue.JsonWriter.value(float value) Encodesvalue.JsonWriter.value(long value) Encodesvalue.Encodesvalue.Encodesvalue.Encodesvalue. -
Uses of JsonWriter in com.google.gson.typeadapters
Methods in com.google.gson.typeadapters with parameters of type JsonWriter