org.glassfish.hk2.api
Class TypeLiteral<T>
java.lang.Object
org.glassfish.hk2.api.TypeLiteral<T>
- Type Parameters:
T
-
public abstract class TypeLiteral<T>
- extends Object
Supports inline instantiation of objects that represent parameterized
types with actual type parameters.
An object that represents any parameterized type may be obtained by
subclassing TypeLiteral
.
TypeLiteral<List<String>> stringListType = new TypeLiteral<List<String>>() {};
TypeLiteral
protected TypeLiteral()
getType
public final Type getType()
- Returns:
- the actual type represented by this object
getParameterTypes
public final Type[] getParameterTypes()
getRawType
public final Class<T> getRawType()
- Returns:
- the raw type represented by this object
getRawType
public static Class<?> getRawType(Type type)
equals
public boolean equals(Object obj)
- Overrides:
equals
in class Object
hashCode
public int hashCode()
- Overrides:
hashCode
in class Object
toString
public String toString()
- Overrides:
toString
in class Object
Copyright © 2013 Oracle Corporation. All Rights Reserved.