Known Indirect Subclasses
Class<T> |
The in-memory representation of a Java class. |
GenericArrayType |
This interface represents an array type with a component type that is either
a parameterized type or a type variable. |
ParameterizedType |
This interface represents a parameterized type such as 'Set<String>' . |
TypeVariable<D extends GenericDeclaration> |
This interface represents a type variables such as 'T' in 'public interface Comparable<T>' , the bounded 'T' in 'public interface A<T extends Number>' or the multiple bounded 'T' in 'public interface B<T extends Number & Cloneable>' . |
WildcardType |
This interface represents a wildcard type, such as the simple wildcard
'?' , the upper bounded wildcard '? extends Closeable' , the
multiple upper bounded wildcard '? extends Closeable & Flushable' or
the lower bounded wildcard '? super OutputStream' . |
|
Class Overview
Common interface implemented by all Java types.
Summary