Package com.google.gson.reflect
Class TypeToken<T>
java.lang.Object
com.google.gson.reflect.TypeToken<T>
Represents a generic type
T
. Java doesn't yet provide a way to
represent generic types, so this class does. Forces clients to create a
subclass of this class which enables retrieval the type information even at
runtime.
For example, to create a type literal for List<String>
, you can
create an empty anonymous inner class:
TypeToken<List<String>> list = new TypeToken<List<String>>() {};
This syntax cannot be used to create type literals that have wildcard
parameters, such as Class<?>
or List<? extends CharSequence>
.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate static AssertionError
buildUnexpectedTypeError
(Type token, Class<?>... expected) final boolean
static <T> TypeToken
<T> Gets type literal for the givenClass
instance.static TypeToken
<?> Gets type literal for the givenType
instance.static TypeToken
<?> Gets type literal for the array type whose elements are all instances ofcomponentType
.static TypeToken
<?> getParameterized
(Type rawType, Type... typeArguments) Gets type literal for the parameterized type represented by applyingtypeArguments
torawType
.Returns the raw (non-generic) type for this type.(package private) static Type
getSuperclassTypeParameter
(Class<?> subclass) Returns the type from super class's type parameter incanonical form
.final Type
getType()
Gets underlyingType
instance.final int
hashCode()
boolean
isAssignableFrom
(TypeToken<?> token) Deprecated.this implementation may be inconsistent with javac for types with wildcards.boolean
isAssignableFrom
(Class<?> cls) Deprecated.this implementation may be inconsistent with javac for types with wildcards.boolean
isAssignableFrom
(Type from) Deprecated.this implementation may be inconsistent with javac for types with wildcards.private static boolean
isAssignableFrom
(Type from, GenericArrayType to) Private helper function that performs some assignability checks for the provided GenericArrayType.private static boolean
isAssignableFrom
(Type from, ParameterizedType to, Map<String, Type> typeVarMap) Private recursive helper function to actually do the type-safe checking of assignability.private static boolean
Checks if two types are the same or are equivalent under a variable mapping given in the type map that was provided.final String
toString()
private static boolean
typeEquals
(ParameterizedType from, ParameterizedType to, Map<String, Type> typeVarMap) Checks if two parameterized types are exactly equal, under the variable replacement described in the typeVarMap.
-
Field Details
-
rawType
-
type
-
hashCode
final int hashCode
-
-
Constructor Details
-
TypeToken
protected TypeToken()Constructs a new type literal. Derives represented class from type parameter.Clients create an empty anonymous subclass. Doing so embeds the type parameter in the anonymous class's type hierarchy so we can reconstitute it at runtime despite erasure.
-
TypeToken
TypeToken(Type type) Unsafe. Constructs a type literal manually.
-
-
Method Details
-
getSuperclassTypeParameter
Returns the type from super class's type parameter incanonical form
. -
getRawType
Returns the raw (non-generic) type for this type. -
getType
Gets underlyingType
instance. -
isAssignableFrom
Deprecated.this implementation may be inconsistent with javac for types with wildcards.Check if this type is assignable from the given class object. -
isAssignableFrom
Deprecated.this implementation may be inconsistent with javac for types with wildcards.Check if this type is assignable from the given Type. -
isAssignableFrom
Deprecated.this implementation may be inconsistent with javac for types with wildcards.Check if this type is assignable from the given type token. -
isAssignableFrom
Private helper function that performs some assignability checks for the provided GenericArrayType. -
isAssignableFrom
private static boolean isAssignableFrom(Type from, ParameterizedType to, Map<String, Type> typeVarMap) Private recursive helper function to actually do the type-safe checking of assignability. -
typeEquals
private static boolean typeEquals(ParameterizedType from, ParameterizedType to, Map<String, Type> typeVarMap) Checks if two parameterized types are exactly equal, under the variable replacement described in the typeVarMap. -
buildUnexpectedTypeError
-
matches
Checks if two types are the same or are equivalent under a variable mapping given in the type map that was provided. -
hashCode
public final int hashCode() -
equals
-
toString
-
get
Gets type literal for the givenType
instance. -
get
Gets type literal for the givenClass
instance. -
getParameterized
Gets type literal for the parameterized type represented by applyingtypeArguments
torawType
. -
getArray
Gets type literal for the array type whose elements are all instances ofcomponentType
.
-