AnnotatedElement
, AnnotatedType
public interface AnnotatedParameterizedType extends AnnotatedType
AnnotatedParameterizedType
represents the potentially annotated use of a parameterized type, whose type arguments may themselves represent annotated uses of types.Modifier and Type | Method | Description |
---|---|---|
AnnotatedType[] |
getAnnotatedActualTypeArguments() |
Returns the potentially annotated actual type arguments of this parameterized type. |
AnnotatedType |
getAnnotatedOwnerType() |
Returns the potentially annotated type that this type is a member of, if this type represents a nested type. |
getAnnotationsByType, getDeclaredAnnotation, getDeclaredAnnotationsByType, isAnnotationPresent
getAnnotation, getAnnotations, getDeclaredAnnotations, getType
AnnotatedType[] getAnnotatedActualTypeArguments()
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.
AnnotatedType getAnnotatedOwnerType()
@TA O<T>.I<S>
, return a representation of @TA O<T>
. Returns null
if this AnnotatedType
represents a top-level class or interface, or a local or anonymous class, or a primitive type, or void.
getAnnotatedOwnerType
in interface AnnotatedType
AnnotatedType
object representing the potentially annotated type that this type is a member of, or null
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
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/reflect/AnnotatedParameterizedType.html