public interface AnnotationMetadata extends ClassMetadata, AnnotatedTypeMetadata
StandardAnnotationMetadata,
MetadataReader.getAnnotationMetadata(),
AnnotatedTypeMetadata| Modifier and Type | Method and Description |
|---|---|
Set<MethodMetadata> |
getAnnotatedMethods(String annotationType)
Retrieve the method metadata for all methods that are annotated
(or meta-annotated) with the given annotation type.
|
Set<String> |
getAnnotationTypes()
Return the names of all annotation types that are present on the
underlying class.
|
Set<String> |
getMetaAnnotationTypes(String annotationType)
Return the names of all meta-annotation types present on the
given annotation type on the underlying class.
|
boolean |
hasAnnotatedMethods(String annotationType)
Determine whether the underlying class has any methods that are
annotated (or meta-annotated) with the given annotation type.
|
boolean |
hasAnnotation(String annotationType)
Determine whether an annotation of the given type is present on
the underlying class.
|
boolean |
hasMetaAnnotation(String metaAnnotationType)
Determine whether the underlying class has an annotation that is itself
annotated with the meta-annotation of the given type.
|
getClassName, getEnclosingClassName, getInterfaceNames, getMemberClassNames, getSuperClassName, hasEnclosingClass, hasSuperClass, isAbstract, isConcrete, isFinal, isIndependent, isInterfacegetAllAnnotationAttributes, getAllAnnotationAttributes, getAnnotationAttributes, getAnnotationAttributes, isAnnotatedSet<String> getAnnotationTypes()
Set<String> getMetaAnnotationTypes(String annotationType)
annotationType - the meta-annotation type to look forboolean hasAnnotation(String annotationType)
annotationType - the annotation type to look forboolean hasMetaAnnotation(String metaAnnotationType)
metaAnnotationType - the meta-annotation type to look forboolean hasAnnotatedMethods(String annotationType)
Set<MethodMetadata> getAnnotatedMethods(String annotationType)
For any returned method, AnnotatedTypeMetadata.isAnnotated(java.lang.String) will
return true for the given annotation type.
annotationType - the annotation type to look forMethodMetadata for methods that have a matching
annotation. The return value will be an empty set if no methods match
the annotation type.