Interface AnnotatedParameterizedType
- All Superinterfaces:
-
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.
- Since:
- 1.8
Methods
| 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. |
Methods declared in interface java.lang.reflect.AnnotatedElement
getAnnotation, getAnnotations, getAnnotationsByType, getDeclaredAnnotation, getDeclaredAnnotations, getDeclaredAnnotationsByType, isAnnotationPresent Methods declared in interface java.lang.reflect.AnnotatedType
getType Methods
getAnnotatedActualTypeArguments
AnnotatedType[] getAnnotatedActualTypeArguments()
Returns the potentially annotated actual type arguments of this parameterized type.
- Returns:
- the potentially annotated actual type arguments of this parameterized type
- See Also:
ParameterizedType.getActualTypeArguments()
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 null if this AnnotatedType represents a top-level type, 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 type declaration -
MalformedParameterizedTypeException- if the owner type refers to a parameterized type that cannot be instantiated for any reason - Since:
- 9
© 1993, 2020, 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/11/docs/api/java.base/java/lang/reflect/AnnotatedParameterizedType.html