Q:

Java program to check an annotation type using the isAnnotation() method

belongs to collection: Java Class and Object Programs

0

Java program to check an annotation type using the isAnnotation() method

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to check an annotation type using the isAnnotation() method is given below. The given program is compiled and executed successfully.

// Java program to check an annotation type 
// using isAnnotation() method

@interface A {}
public class Main {
  public static void main(String[] args) throws ClassNotFoundException {
    Class cls1 = A.class;
    Class cls2 = Main.class;

    if (cls1.isAnnotation())
      System.out.println("The cls1 is representing an annotation type");
    else
      System.out.println("The cls1 is not representing an annotation type");

    if (cls2.isAnnotation())
      System.out.println("The cls2 is representing an annotation type");
    else
      System.out.println("The cls2 is not representing an annotation type");
  }
}

Output:

The cls1 is representing an annotation type
The cls2 is not representing an annotation type

Explanation:

In the above program, we created a public class Main that contains a main() method. The main() method is the entry point for the program. Here, we checked an annotation type using the isAnnotation() method and printed the appropriate message.

The isAnnotation() method returns true if it is an annotation type otherwise it returns false. An interface is an annotation type.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java Class and Object Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to demonstrate the getName() method... >>
<< Java program to check whether a class is declared ...