TypeVariablepublic interface TypeVariable implements TypeRepresents a type variable.
For example, the generic interface {@code List} has a single
type variable {@code E}.
A type variable may have explicit bounds, as in
{@code C}. |
Methods Summary |
---|
public com.sun.javadoc.Type[] | bounds()Return the bounds of this type variable.
These are the types given by the extends clause.
Return an empty array if there are no explicit bounds.
| public com.sun.javadoc.ProgramElementDoc | owner()Return the class, interface, method, or constructor within
which this type variable is declared.
|
|