GenericDeclaration
public interface GenericDeclaration
java.lang.reflect.GenericDeclaration |
Known Indirect Subclasses
Class<T> |
类 Class 实例表示正在运行的Java应用程序中的类和接口。 |
Constructor<T> |
Constructor 提供关于和访问一个类的单个构造函数的信息。 |
方法 |
A 方法 提供有关和访问类或接口上的单个方法的信息。 |
|
所有声明类型变量的实体的通用接口。
Summary
Public methods
getTypeParameters
TypeVariable[]<?> getTypeParameters ()
以声明顺序GenericDeclaration
表示由此GenericDeclaration
对象表示的通用声明声明的类型变量的TypeVariable
对象数组。 如果基础泛型声明声明没有类型变量,则返回长度为0的数组。
Returns |
TypeVariable[]<?> |
an array of TypeVariable objects that represent the type variables declared by this generic declaration |
Throws |
GenericSignatureFormatError |
if the generic signature of this generic declaration does not conform to the format specified in The Java™ Virtual Machine Specification |