Package net.bytebuddy.description.type
Interface TypeDescription.Generic.AnnotationReader.ForComponentType.AnnotatedParameterizedType
-
- Enclosing class:
- TypeDescription.Generic.AnnotationReader.ForComponentType
@Proxied("java.lang.reflect.AnnotatedArrayType") protected static interface TypeDescription.Generic.AnnotationReader.ForComponentType.AnnotatedParameterizedType
A proxy to interact withjava.lang.reflect.AnnotatedArrayType
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.reflect.AnnotatedElement
getAnnotatedGenericComponentType(java.lang.reflect.AnnotatedElement value)
Returns the supplied annotated array type's annotated component type.boolean
isInstance(java.lang.reflect.AnnotatedElement value)
Returnstrue
if the supplied instance implementsjava.lang.reflect.AnnotatedArrayType
.
-
-
-
Method Detail
-
isInstance
@Instance boolean isInstance(java.lang.reflect.AnnotatedElement value)
Returnstrue
if the supplied instance implementsjava.lang.reflect.AnnotatedArrayType
.- Parameters:
value
- The annotated element to consider.- Returns:
true
if the supplied instance is of typejava.lang.reflect.AnnotatedArrayType
.
-
getAnnotatedGenericComponentType
java.lang.reflect.AnnotatedElement getAnnotatedGenericComponentType(java.lang.reflect.AnnotatedElement value)
Returns the supplied annotated array type's annotated component type.- Parameters:
value
- The annotated array type to resolve.- Returns:
- The supplied annotated array type's annotated component type.
-
-