-
- All Superinterfaces:
-
Type
@Deprecated(since="9", forRemoval=true) public interface WildcardType extends Type
Deprecated, for removal: This API element is subject to removal in a future version.The declarations in this package have been superseded by those in the packagejdk.javadoc.doclet
. For more information, see the Migration Guide in the documentation for that package.表示通配符类型参数。 例子包括:<?>
<? extends E>
<? super T>
- 从以下版本开始:
- 1.5
-
-
方法摘要
所有方法 实例方法 抽象方法 弃用的方法 变量和类型 方法 描述 Type[]
extendsBounds()
不推荐使用,要删除:此API元素将在以后的版本中删除。返回 extends子句给出的此通配符类型参数的上限。Type[]
superBounds()
不推荐使用,要删除:此API元素将在以后的版本中删除。返回 super子句给出的此通配符类型参数的下限。-
声明方法的接口 com.sun.javadoc.Type
asAnnotatedType, asAnnotationTypeDoc, asClassDoc, asParameterizedType, asTypeVariable, asWildcardType, dimension, getElementType, isPrimitive, qualifiedTypeName, simpleTypeName, toString, typeName
-
-
-
-
方法详细信息
-
extendsBounds
Type[] extendsBounds()
Deprecated, for removal: This API element is subject to removal in a future version.返回extends子句给出的此通配符类型参数的上限。 如果没有明确给出这样的边界,则返回一个空数组。- 结果
- 此通配符类型参数的extends bounds
-
superBounds
Type[] superBounds()
Deprecated, for removal: This API element is subject to removal in a future version.返回super子句给出的此通配符类型参数的下限。 如果没有明确给出这样的边界,则返回一个空数组。- 结果
- 此通配符类型参数的超边界
-
-