-
- All Superinterfaces:
-
AnnotatedElement
,AnnotatedType
public interface AnnotatedArrayType extends AnnotatedType
AnnotatedArrayType
表示可能带注释的数组类型的使用,其组件类型本身可以表示对类型的带注释的用法。- 从以下版本开始:
- 1.8
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 AnnotatedType
getAnnotatedGenericComponentType()
返回此数组类型的可能带注释的通用组件类型。AnnotatedType
getAnnotatedOwnerType()
如果此类型表示嵌套类型,则返回此类型所属的潜在注释类型。-
声明方法的接口 java.lang.reflect.AnnotatedElement
getAnnotation, getAnnotations, getAnnotationsByType, getDeclaredAnnotation, getDeclaredAnnotations, getDeclaredAnnotationsByType, isAnnotationPresent
-
声明方法的接口 java.lang.reflect.AnnotatedType
getType
-
-
-
-
方法详细信息
-
getAnnotatedGenericComponentType
AnnotatedType getAnnotatedGenericComponentType()
返回此数组类型的可能带注释的通用组件类型。- 结果
- 此数组类型的潜在注释通用组件类型
- 另请参见:
-
GenericArrayType.getGenericComponentType()
-
getAnnotatedOwnerType
AnnotatedType getAnnotatedOwnerType()
如果此类型表示嵌套类型,则返回此类型所属的潜在注释类型。 例如,如果此类型为@TA O<T>.I<S>
,则返回@TA O<T>.I<S>
的表示@TA O<T>
。对于
AnnotatedType
,返回null
,该实例为AnnotatedArrayType
。- Specified by:
-
getAnnotatedOwnerType
在接口AnnotatedType
- 结果
-
null
- 从以下版本开始:
- 9
-
-