Package com.google.gson.reflect
Class TypeToken<T>
- java.lang.Object
-
- com.google.gson.reflect.TypeToken<T>
-
public class TypeToken<T> extends java.lang.ObjectRepresents a generic typeT. 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<?>orList<? extends CharSequence>.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(java.lang.Object o)static <T> TypeToken<T>get(java.lang.Class<T> type)Gets type literal for the givenClassinstance.static TypeToken<?>get(java.lang.reflect.Type type)Gets type literal for the givenTypeinstance.static TypeToken<?>getArray(java.lang.reflect.Type componentType)Gets type literal for the array type whose elements are all instances ofcomponentType.static TypeToken<?>getParameterized(java.lang.reflect.Type rawType, java.lang.reflect.Type... typeArguments)Gets type literal for the parameterized type represented by applyingtypeArgumentstorawType.java.lang.Class<? super T>getRawType()Returns the raw (non-generic) type for this type.java.lang.reflect.TypegetType()Gets underlyingTypeinstance.inthashCode()booleanisAssignableFrom(TypeToken<?> token)Deprecated.this implementation may be inconsistent with javac for types with wildcards.booleanisAssignableFrom(java.lang.Class<?> cls)Deprecated.this implementation may be inconsistent with javac for types with wildcards.booleanisAssignableFrom(java.lang.reflect.Type from)Deprecated.this implementation may be inconsistent with javac for types with wildcards.java.lang.StringtoString()
-
-
-
Method Detail
-
getRawType
public final java.lang.Class<? super T> getRawType()
Returns the raw (non-generic) type for this type.
-
getType
public final java.lang.reflect.Type getType()
Gets underlyingTypeinstance.
-
isAssignableFrom
@Deprecated public boolean isAssignableFrom(java.lang.Class<?> cls)
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 public boolean isAssignableFrom(java.lang.reflect.Type from)
Deprecated.this implementation may be inconsistent with javac for types with wildcards.Check if this type is assignable from the given Type.
-
isAssignableFrom
@Deprecated public boolean isAssignableFrom(TypeToken<?> token)
Deprecated.this implementation may be inconsistent with javac for types with wildcards.Check if this type is assignable from the given type token.
-
hashCode
public final int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public final boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
toString
public final java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
get
public static TypeToken<?> get(java.lang.reflect.Type type)
Gets type literal for the givenTypeinstance.
-
get
public static <T> TypeToken<T> get(java.lang.Class<T> type)
Gets type literal for the givenClassinstance.
-
getParameterized
public static TypeToken<?> getParameterized(java.lang.reflect.Type rawType, java.lang.reflect.Type... typeArguments)
Gets type literal for the parameterized type represented by applyingtypeArgumentstorawType.
-
getArray
public static TypeToken<?> getArray(java.lang.reflect.Type componentType)
Gets type literal for the array type whose elements are all instances ofcomponentType.
-
-