|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.google.inject.TypeLiteral<T>
public abstract class TypeLiteral<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:
TypeLiteral<List<String>> list = new TypeLiteral<List<String>>() {};
Assumes that type T
implements Object.equals(java.lang.Object)
and
Object.hashCode()
as value (as opposed to identity) comparison.
Constructor Summary | |
---|---|
protected |
TypeLiteral()
Constructs a new type literal. |
Method Summary | ||
---|---|---|
boolean |
equals(Object o)
|
|
static
|
get(Class<T> type)
Gets type literal for the given Class instance. |
|
static TypeLiteral<?> |
get(Type type)
Gets type literal for the given Type instance. |
|
Type |
getType()
Gets underlying Type instance. |
|
int |
hashCode()
|
|
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
protected TypeLiteral()
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.
Method Detail |
---|
public Type getType()
Type
instance.
public int hashCode()
hashCode
in class Object
public boolean equals(Object o)
equals
in class Object
public String toString()
toString
in class Object
public static TypeLiteral<?> get(Type type)
Type
instance.
public static <T> TypeLiteral<T> get(Class<T> type)
Class
instance.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |