KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > lang > reflect > AnnotatedElement

java.lang.reflect
Interface AnnotatedElement

All Known Implementing Classes:
AccessibleObject, Class, Constructor, Field, Method, Package
See Also:
Top Examples, IncompleteAnnotationException, AnnotationTypeMismatchException, EnumConstantNotPresentException, TypeNotPresentException

<T extends Annotation> T getAnnotation(Class<T> annotationType)
See Also:
NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Annotation[] getAnnotations()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Annotation[] getDeclaredAnnotations()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean isAnnotationPresent(Class<? extends Annotation> annotationType)
See Also:
NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags