Interface TypeVariableDetails

All Superinterfaces:
TypeDetails, TypeVariableScope
All Known Implementing Classes:
TypeVariableDetailsImpl

public interface TypeVariableDetails extends TypeDetails
Models a resolved type parameter or type argument.

The name of the type variable corresponds to the raw type name, which is the first upper bound. The identifier is the name of the type variable as present in the source code.

For example:

 T extends Number
 
In this case, the identifier is T, while the name is java.lang.Number.
See Also: