Module  java.base
软件包  java.lang.reflect

Interface AnnotatedParameterizedType

  • All Superinterfaces:
    AnnotatedElementAnnotatedType


    public interface AnnotatedParameterizedType
    extends AnnotatedType
    AnnotatedParameterizedType表示参数化类型的潜在注释使用,其类型参数本身可以表示类型的注释使用。
    从以下版本开始:
    1.8
    • 方法详细信息

      • getAnnotatedOwnerType

        AnnotatedType getAnnotatedOwnerType​()
        如果此类型表示嵌套类型,则返回此类型为其成员的潜在注释类型。 例如,如果该类型是@TA O<T>.I<S> ,返回的表示@TA O<T>

        返回null如果这个AnnotatedType表示顶级类型,或本地或匿名类,或原始类型或void。

        Specified by:
        getAnnotatedOwnerType在接口 AnnotatedType
        结果
        一个 AnnotatedType对象,表示此类型是其成员的潜在注释类型,或 null
        异常
        TypeNotPresentException - 如果所有者类型引用不存在的类型声明
        MalformedParameterizedTypeException - 如果所有者类型引用由于任何原因无法实例化的参数化类型
        从以下版本开始:
        9