Module com.google.gson
Package com.google.gson
This package provides the
Gson
class to convert Json to Java and
vice-versa.
The primary class to use is Gson
which can be constructed with
new Gson()
(using default settings) or by using GsonBuilder
(to configure various options such as using versioning and so on).
- Author:
- Inderjeet Singh, Joel Leitch
-
Interface Summary Interface Description ExclusionStrategy A strategy (or policy) definition that is used to decide whether or not a field or class should be serialized or deserialized as part of the JSON output/input.FieldNamingStrategy A mechanism for providing custom field naming in Gson.InstanceCreator<T> This interface is implemented to create instances of a class that does not define a no-args constructor.JsonDeserializationContext Context for deserialization that is passed to a custom deserializer during invocation of itsJsonDeserializer.deserialize(JsonElement, Type, JsonDeserializationContext)
method.JsonDeserializer<T> Interface representing a custom deserializer for JSON.JsonSerializationContext Context for serialization that is passed to a custom serializer during invocation of itsJsonSerializer.serialize(Object, Type, JsonSerializationContext)
method.JsonSerializer<T> Interface representing a custom serializer for JSON.ReflectionAccessFilter Filter for determining whether reflection based serialization and deserialization is allowed for a class.ToNumberStrategy TypeAdapterFactory Creates type adapters for set of related types. -
Class Summary Class Description FieldAttributes A data object that stores attributes of a field.Gson This is the main class for using Gson.GsonBuilder Use this builder to construct aGson
instance when you need to set configuration options other than the default.JsonArray A class representing an array type in JSON.JsonElement A class representing an element of JSON.JsonNull A class representing a JSONnull
value.JsonObject A class representing an object type in Json.JsonParser A parser to parse JSON into a parse tree ofJsonElement
s.JsonPrimitive A class representing a JSON primitive value.JsonStreamParser A streaming parser that allows reading of multipleJsonElement
s from the specified reader asynchronously.TypeAdapter<T> Converts Java objects to and from JSON. -
Enum Summary Enum Description FieldNamingPolicy An enumeration that defines a few standard naming conventions for JSON field names.LongSerializationPolicy Defines the expected format for along
orLong
type when it is serialized.ReflectionAccessFilter.FilterResult Result of a filter check.ToNumberPolicy -
Exception Summary Exception Description JsonIOException This exception is raised when Gson was unable to read an input stream or write to one.JsonParseException This exception is raised if there is a serious issue that occurs during parsing of a Json string.JsonSyntaxException This exception is raised when Gson attempts to read (or write) a malformed JSON element.