FileDocCategorySizeDatePackage
TypeVariable.javaAPI DocJava SE 5 API1095Fri Aug 26 14:54:54 BST 2005com.sun.javadoc

TypeVariable

public interface TypeVariable implements Type
Represents 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}.
author
Scott Seligman
version
1.2 03/12/19
since
1.5

Fields Summary
Constructors Summary
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.

return
the bounds of this type variable.

public com.sun.javadoc.ProgramElementDocowner()
Return the class, interface, method, or constructor within which this type variable is declared.

return
the class, interface, method, or constructor within which this type variable is declared.