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