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

WildcardType

public interface WildcardType implements Type
Represents a wildcard type argument. Examples include:
{@code }
{@code }
{@code }
A wildcard type can have explicit extends bounds or explicit super bounds or neither, but not both.
author
Scott Seligman
version
1.2 03/12/19
since
1.5

Fields Summary
Constructors Summary
Methods Summary
public com.sun.javadoc.Type[]extendsBounds()
Return the upper bounds of this wildcard type argument as given by the extends clause. Return an empty array if no such bounds are explicitly given.

return
the extends bounds of this wildcard type argument

public com.sun.javadoc.Type[]superBounds()
Return the lower bounds of this wildcard type argument as given by the super clause. Return an empty array if no such bounds are explicitly given.

return
the super bounds of this wildcard type argument