Package jakarta.enterprise.util
Class TypeLiteral<T>
java.lang.Object
jakarta.enterprise.util.TypeLiteral<T>
- Type Parameters:
T
- the type, including all actual type parameters
- All Implemented Interfaces:
Serializable
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>>() { };
- Author:
- Gavin King, Pete Muir
- See Also:
-
Constructor Summary
ModifierConstructorDescriptionprotected
The literal constructor, only for subclasses. -
Method Summary
-
Constructor Details
-
TypeLiteral
protected TypeLiteral()The literal constructor, only for subclasses.
-
-
Method Details