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