Interface AnnotatedParameterizedType
- All Superinterfaces:
AnnotatedElement, AnnotatedType
AnnotatedParameterizedType represents the potentially annotated use
of a parameterized type, whose type arguments may themselves represent
annotated uses of types.- See Java Language Specification:
-
4.5 Parameterized Types
- Since:
- 1.8
-
Method Summary
Modifier and TypeMethodDescriptionReturns the potentially annotated actual type arguments of this parameterized type.Returns the potentially annotated type that this type is a member of, if this type represents a nested type.Methods inherited from interface AnnotatedElement
getAnnotationsByType, getDeclaredAnnotation, getDeclaredAnnotationsByType, isAnnotationPresentModifier and TypeMethodDescriptiondefault <T extends Annotation>
T[]getAnnotationsByType(Class<T> annotationClass) Returns annotations that are associated with this element.default <T extends Annotation>
TgetDeclaredAnnotation(Class<T> annotationClass) Returns this element's annotation for the specified type if such an annotation is directly present, else null.default <T extends Annotation>
T[]getDeclaredAnnotationsByType(Class<T> annotationClass) Returns this element's annotation(s) for the specified type if such annotations are either directly present or indirectly present.default booleanisAnnotationPresent(Class<? extends Annotation> annotationClass) Returns true if an annotation for the specified type is present on this element, else false.Methods inherited from interface AnnotatedType
getAnnotation, getAnnotations, getDeclaredAnnotations, getTypeModifier and TypeMethodDescription<T extends Annotation>
TgetAnnotation(Class<T> annotationClass) Returns this element's annotation for the specified type if such an annotation is present, else null.Returns annotations that are present on this element.Returns annotations that are directly present on this element.getType()Returns the underlying type that this annotated type represents.
-
Method Details
-
getAnnotatedActualTypeArguments
AnnotatedType[] getAnnotatedActualTypeArguments()Returns the potentially annotated actual type arguments of this parameterized type.Note that in some cases, the returned array can be empty. This can occur if this annotated type represents a non-parameterized type nested within a parameterized type.
- Returns:
- the potentially annotated actual type arguments of this parameterized type
- See Also:
-
getAnnotatedOwnerType
AnnotatedType getAnnotatedOwnerType()Returns the potentially annotated type that this type is a member of, if this type represents a nested type. For example, if this type is@TA O<T>.I<S>, return a representation of@TA O<T>.Returns
nullif thisAnnotatedTyperepresents a top-level class or interface, or a local or anonymous class, or a primitive type, or void.- Specified by:
getAnnotatedOwnerTypein interfaceAnnotatedType- Returns:
- an
AnnotatedTypeobject representing the potentially annotated type that this type is a member of, ornull - Throws:
TypeNotPresentException- if the owner type refers to a non-existent class or interface declarationMalformedParameterizedTypeException- if the owner type refers to a parameterized type that cannot be instantiated for any reason- Since:
- 9
-