The
getDeclaredAnnotations() method of
java.lang.AnnotatedElement class is used to get the declared annotations present in the class implementing this interface. The method returns an array of declared annotations present.
Syntax:
public DeclaredAnnotation[] getDeclaredAnnotations()
Parameter: This method does not accepts any parameter.
Return Value: This method returns
an array of declared annotations present.
Below programs demonstrate the getDeclaredAnnotations() method.
Example 1:
Output:
AnnotatedElement represented by myAnnotatedElement: class Test
DeclaredAnnotation of myAnnotatedElement: [@java.lang.Deprecated()]
Example 2: