-
- All Superinterfaces:
-
Type
@Deprecated(since="9", forRemoval=true) public interface TypeVariable 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.表示类型变量。 例如,通用接口List<E>
具有单个类型变量E
。 类型变量可以具有显式边界,如C<R extends Remote>
。- 从以下版本开始:
- 1.5
-
-
方法摘要
所有方法 实例方法 抽象方法 弃用的方法 变量和类型 方法 描述 AnnotationDesc[]
annotations()
不推荐使用,要删除:此API元素将在以后的版本中删除。获取此程序元素的注释。Type[]
bounds()
不推荐使用,要删除:此API元素将在以后的版本中删除。返回此类型变量的边界。ProgramElementDoc
owner()
不推荐使用,要删除:此API元素将在以后的版本中删除。返回声明此类型变量的类,接口,方法或构造函数。-
声明方法的接口 com.sun.javadoc.Type
asAnnotatedType, asAnnotationTypeDoc, asClassDoc, asParameterizedType, asTypeVariable, asWildcardType, dimension, getElementType, isPrimitive, qualifiedTypeName, simpleTypeName, toString, typeName
-
-
-
-
方法详细信息
-
bounds
Type[] bounds()
Deprecated, for removal: This API element is subject to removal in a future version.返回此类型变量的边界。 这些是extends子句给出的类型。 如果没有显式边界,则返回一个空数组。- 结果
- 这个类型变量的边界。
-
owner
ProgramElementDoc owner()
Deprecated, for removal: This API element is subject to removal in a future version.返回声明此类型变量的类,接口,方法或构造函数。- 结果
- 声明此类型变量的类,接口,方法或构造函数。
-
annotations
AnnotationDesc[] annotations()
Deprecated, for removal: This API element is subject to removal in a future version.获取此程序元素的注释。 如果没有,则返回一个空数组。- 结果
- 此程序元素的注释或空数组(如果没有)。
-
-