Package gw.gosudoc.com.sun.javadoc
Interface WildcardType
- All Superinterfaces:
Type
- All Known Implementing Classes:
WildcardTypeImpl
Deprecated.
Represents a wildcard type argument.
Examples include:
A wildcard type can have explicit extends bounds or explicit super bounds or neither, but not both.<?>
<? extends E>
<? super T>
- Since:
- 1.5
-
Method Summary
Methods inherited from interface gw.gosudoc.com.sun.javadoc.Type
asAnnotatedType, asAnnotationTypeDoc, asClassDoc, asParameterizedType, asTypeVariable, asWildcardType, dimension, getElementType, isPrimitive, qualifiedTypeName, simpleTypeName, toString, typeName
-
Method Details
-
extendsBounds
Type[] extendsBounds()Deprecated.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.- Returns:
- the extends bounds of this wildcard type argument
-
superBounds
Type[] superBounds()Deprecated.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.- Returns:
- the super bounds of this wildcard type argument
-
jdk.javadoc.doclet
. For more information, see the Migration Guide in the documentation for that package.