Uses of Class
com.google.gson.reflect.TypeToken
-
Packages that use TypeToken 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.reflect This package provides utility classes for finding type information for generic types. -
-
Uses of TypeToken in com.google.gson
Methods in com.google.gson with parameters of type TypeToken Modifier and Type Method Description <T> TypeAdapter<T>
TypeAdapterFactory. create(Gson gson, TypeToken<T> type)
Returns a type adapter fortype
, or null if this factory doesn't supporttype
.<T> TypeAdapter<T>
Gson. getAdapter(TypeToken<T> type)
Returns the type adapter for type.<T> TypeAdapter<T>
Gson. getDelegateAdapter(TypeAdapterFactory skipPast, TypeToken<T> type)
This method is used to get an alternate type adapter for the specified type. -
Uses of TypeToken in com.google.gson.internal
Methods in com.google.gson.internal with parameters of type TypeToken Modifier and Type Method Description <T> TypeAdapter<T>
Excluder. create(Gson gson, TypeToken<T> type)
<T> ObjectConstructor<T>
ConstructorConstructor. get(TypeToken<T> typeToken)
-
Uses of TypeToken in com.google.gson.internal.bind
Methods in com.google.gson.internal.bind with parameters of type TypeToken Modifier and Type Method Description <T> TypeAdapter<T>
CollectionTypeAdapterFactory. create(Gson gson, TypeToken<T> typeToken)
<T> TypeAdapter<T>
JsonAdapterAnnotationTypeAdapterFactory. create(Gson gson, TypeToken<T> targetType)
<T> TypeAdapter<T>
MapTypeAdapterFactory. create(Gson gson, TypeToken<T> typeToken)
<T> TypeAdapter<T>
ReflectiveTypeAdapterFactory. create(Gson gson, TypeToken<T> type)
static TypeAdapterFactory
TreeTypeAdapter. newFactory(TypeToken<?> exactType, Object typeAdapter)
Returns a new factory that will match each type againstexactType
.static <TT> TypeAdapterFactory
TypeAdapters. newFactory(TypeToken<TT> type, TypeAdapter<TT> typeAdapter)
static TypeAdapterFactory
TreeTypeAdapter. newFactoryWithMatchRawType(TypeToken<?> exactType, Object typeAdapter)
Returns a new factory that will match each type and its raw type againstexactType
.Constructors in com.google.gson.internal.bind with parameters of type TypeToken Constructor Description TreeTypeAdapter(JsonSerializer<T> serializer, JsonDeserializer<T> deserializer, Gson gson, TypeToken<T> typeToken, TypeAdapterFactory skipPast)
-
Uses of TypeToken in com.google.gson.reflect
Methods in com.google.gson.reflect that return TypeToken Modifier and Type Method Description static <T> TypeToken<T>
TypeToken. get(Class<T> type)
Gets type literal for the givenClass
instance.static TypeToken<?>
TypeToken. get(Type type)
Gets type literal for the givenType
instance.static TypeToken<?>
TypeToken. getArray(Type componentType)
Gets type literal for the array type whose elements are all instances ofcomponentType
.static TypeToken<?>
TypeToken. getParameterized(Type rawType, Type... typeArguments)
Gets type literal for the parameterized type represented by applyingtypeArguments
torawType
.Methods in com.google.gson.reflect with parameters of type TypeToken Modifier and Type Method Description boolean
TypeToken. isAssignableFrom(TypeToken<?> token)
Deprecated.this implementation may be inconsistent with javac for types with wildcards.
-