public abstract class Annotated extends Object
AnnotationMap
).Modifier | Constructor and Description |
---|---|
protected |
Annotated() |
Modifier and Type | Method and Description |
---|---|
protected abstract AnnotationMap |
getAllAnnotations() |
abstract AnnotatedElement |
getAnnotated()
Method that can be used to find actual JDK element that this instance
represents.
|
abstract <A extends Annotation> |
getAnnotation(Class<A> acls) |
abstract Type |
getGenericType()
Full generic type of the annotated element; definition
of what exactly this means depends on sub-class.
|
protected abstract int |
getModifiers() |
abstract String |
getName() |
abstract Class<?> |
getRawType()
"Raw" type (type-erased class) of the annotated element; definition
of what exactly this means depends on sub-class.
|
JavaType |
getType(TypeBindings context)
Full generic type of the annotated element; definition
of what exactly this means depends on sub-class.
|
<A extends Annotation> |
hasAnnotation(Class<A> acls) |
boolean |
isPublic() |
abstract Annotated |
withAnnotations(AnnotationMap fallback)
Fluent factory method that will construct a new instance that uses specified
instance annotations instead of currently configured ones.
|
Annotated |
withFallBackAnnotationsFrom(Annotated annotated)
Fluent factory method that will construct a new instance that uses
annotations from specified
Annotated as fallback annotations |
public abstract <A extends Annotation> A getAnnotation(Class<A> acls)
public final <A extends Annotation> boolean hasAnnotation(Class<A> acls)
public abstract Annotated withAnnotations(AnnotationMap fallback)
public final Annotated withFallBackAnnotationsFrom(Annotated annotated)
Annotated
as fallback annotationspublic abstract AnnotatedElement getAnnotated()
protected abstract int getModifiers()
public final boolean isPublic()
public abstract String getName()
public JavaType getType(TypeBindings context)
public abstract Type getGenericType()
public abstract Class<?> getRawType()
protected abstract AnnotationMap getAllAnnotations()