|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface ClassMetaData
A class meta data interface allowing to access the actual class metadata.
| Method Summary | |
|---|---|
Map<String,Object> |
getAnnotationAttributes(String annotationType)
Retrieve the attributes of the annotation of the given type, if any (i.e. if defined on the underlying class). |
Set<String> |
getAnnotationTypes()
Return the names of all annotation types defined on the underlying class. |
String |
getClassName()
Return the name of the underlying class. |
String |
getEnclosingClassName()
Return the name of the enclosing class of the underlying class, or null if the underlying class is a top-level class. |
String[] |
getInterfaceNames()
Return the name of all interfaces that the underlying class implements, or an empty array if there are none. |
Set<String> |
getMetaAnnotationTypes(String annotationType)
Return the names of all meta-annotation types defined on the given annotation type of the underlying class. |
String |
getSuperClassName()
Return the name of the super class of the underlying class, or null if there is no super class defined. |
boolean |
hasAnnotation(String annotationType)
Determine whether the underlying class has an annotation of the given type defined. |
boolean |
hasEnclosingClass()
Return whether the underlying class has an enclosing class (i.e. the underlying class is an inner/nested class or a local class within a method). |
boolean |
hasMetaAnnotation(String metaAnnotationType)
Determine whether the underlying class has an annotation that is itself annotated with the meta-annotation of the given type. |
boolean |
hasSuperClass()
Return whether the underlying class has a super class. |
boolean |
isAbstract()
Return whether the underlying class is marked as abstract. |
boolean |
isConcrete()
Return whether the underlying class represents a concrete class, i.e. neither an interface nor an abstract class. |
boolean |
isIndependent()
Determine whether the underlying class is independent, i.e. whether it is a top-level class or a nested class (static inner class) that can be constructed independent from an enclosing class. |
boolean |
isInterface()
Return whether the underlying class represents an interface. |
| Method Detail |
|---|
String getClassName()
boolean isInterface()
boolean isAbstract()
boolean isConcrete()
boolean isIndependent()
boolean hasEnclosingClass()
If this method returns false, then the
underlying class is a top-level class.
String getEnclosingClassName()
null if the underlying class is a top-level class.
boolean hasSuperClass()
String getSuperClassName()
null if there is no super class defined.
String[] getInterfaceNames()
Set<String> getAnnotationTypes()
boolean hasAnnotation(String annotationType)
annotationType - the annotation type to look for
Set<String> getMetaAnnotationTypes(String annotationType)
boolean hasMetaAnnotation(String metaAnnotationType)
metaAnnotationType - the meta-annotation type to look for
Map<String,Object> getAnnotationAttributes(String annotationType)
annotationType - the annotation type to look for
null if no matching
annotation is defined.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||