Home » 
        Java programming language
    
    Java Package isAnnotationPresent() method with example
    
    
    
            
        Package Class isAnnotationPresent() method: Here, we are going to learn about the isAnnotationPresent() method of Package Class with its syntax and example.
        Submitted by Preeti Jain, on December 04, 2019
    
    
    Package Class isAnnotationPresent() method
    
        - isAnnotationPresent() method is available in java.lang package.
 
        - isAnnotationPresent() method returns true when the annotation for the given type exists on this entity otherwise it returns false.
 
        - isAnnotationPresent() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
 
        - isAnnotationPresent() method may throw an exception at the time checking present annotation.
NullPointerException: In this exception, when the given annotation class is null. 
    
    Syntax:
    public boolean isAnnotationPresent(Class ann_class);
    Parameter(s):
    
        - Class ann_class – represents the Class object similar or correspondent to the annotation type.
 
    
    
    Return value:
    The return type of this method is boolean, it returns the following values based on the given cases,
    
        - It returns true when an annotation for the given type exists on this entity.
 
        - It returns false when an annotation for the given type does not exist.
 
    
    Example:
// Java program to demonstrate the example 
// of boolean isAnnotationPresent(Class ann_class)
// method of Package 
import java.security.*;
public class IsAnnotationPresentOfClass {
    public static void main(String[] args) throws Exception {
        Class ann1 = Identity.class;
        Class ann2 = Deprecated.class;
        // We are checking Annotation Present type of Deprecated 
        // class by using the method isAnnotationPresent()
        boolean b1 = ann2.isAnnotationPresent(ann2);
        System.out.println("is Deprecated an Annotation Present type" + " " + b1);
        // We are checking Annotation Present type of Identity class
        // by using the method isAnnotationPresent()
        boolean b2 = ann1.isAnnotationPresent(ann1);
        System.out.println("is Deprecated an Annotation Present type" + " " + b2);
    }
}
Output
is Deprecated an Annotation Present type false
is Deprecated an Annotation Present type false
    
    
  
    Advertisement
    
    
    
  
  
    Advertisement