VOOZH about

URL: https://www.geeksforgeeks.org/java/annotatedelement-getdeclaredannotations-method-in-java-with-examples/

⇱ AnnotatedElement getDeclaredAnnotations() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

AnnotatedElement getDeclaredAnnotations() method in Java with Examples

Last Updated : 3 Jan, 2020
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:
Output:
AnnotatedElement represented by myAnnotatedElement: class Test DeclaredAnnotation of myAnnotatedElement: [@DeclaredAnnotation(key=GFG, value=GeeksForGeeks)]
Reference: https://docs.oracle.com/javase/9/docs/api/java/lang/reflect/AnnotatedElement.html#getDeclaredAnnotations--
Comment