El método getAnnotationsByType() de la clase java.lang.AnnotatedElement se utiliza para obtener las anotaciones del tipo de anotación especificado presente en la clase que implementa esta interfaz. El método devuelve una array de anotaciones para el tipo de anotación especificado.
Sintaxis:
public A[] getAnnotationsByType(Class<T> annotationClass)
Parámetro: Este método acepta un parámetro annotationClass que es el tipo de anotación a obtener.
Valor devuelto: este método devuelve una array de anotaciones para el tipo de anotación especificado.
Excepción: este método arroja:
- NullPointerException: si la clase de anotación dada es nula.
Los siguientes programas muestran el método getAnnotationsByType().
Ejemplo 1:
// Java program to demonstrate // getAnnotationsByType() method import java.util.*; import java.lang.reflect.*; import java.lang.annotation.*; // create a custom Annotation @Retention(RetentionPolicy.RUNTIME) @interface Annotation { // This annotation has two attributes. public String key(); public String value(); } // call Annotation for method // and pass values for annotation @Annotation(key = "GFG", value = "GeeksForGeeks") public class Test { public Object obj; public static void main(String[] args) throws ClassNotFoundException { // returns the Class object // for this myAnnotatedElement AnnotatedElement myAnnotatedElement = Test.class; System.out.println( "AnnotatedElement represented" + " by myAnnotatedElement: " + myAnnotatedElement.toString()); // Get the annotation // using getAnnotationsByType() method System.out.println( "Annotation of myAnnotatedElement" + " of type Annotation: " + Arrays.toString( myAnnotatedElement .getAnnotationsByType( Annotation.class))); } }
AnnotatedElement representado por myAnnotatedElement: clase Prueba
de anotación de myAnnotatedElement de tipo Anotación: [@Annotation(key=GFG, value=GeeksForGeeks)]
Ejemplo 2:
// Java program to demonstrate // getAnnotationsByType() method import java.util.*; import java.lang.reflect.*; import java.lang.annotation.*; @Deprecated public class Test { public Object obj; public static void main(String[] args) throws ClassNotFoundException { try { // returns the Class object // for this myAnnotatedElement AnnotatedElement myAnnotatedElement = Test.class; System.out.println( "AnnotatedElement represented" + " by myAnnotatedElement: " + myAnnotatedElement.toString()); // Get the annotation // using getAnnotationsByType() method System.out.println( "Annotation of myAnnotatedElement" + " of type Deprecated: " + Arrays.toString( myAnnotatedElement .getAnnotationsByType( Deprecated.class))); } catch (Exception e) { System.out.println(e); } } }
AnnotatedElement representado por myAnnotatedElement: clase
Anotación de prueba de myAnnotatedElement de tipo Obsoleto: [@java.lang.Deprecated()]
Publicación traducida automáticamente
Artículo escrito por guptayashgupta53 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA