Class desiredAssertionStatus() method in Java with Examples Last Updated : 27 Dec, 2019 Comments Improve Suggest changes Like Article Like Report The desiredAssertionStatus() method of java.lang.Class class is used to get the Assertion Status of this class, that would get assigned to the class when this method gets invoked. The method returns the Assertion Status of this class in the form of a boolean value. Syntax: public boolean desiredAssertionStatus() Parameter: This method does not accepts any parameter Return Value: This method returns the specified Assertion Status of this class in the form of a boolean value. Below programs demonstrate the desiredAssertionStatus() method. Example 1: Java // Java program to demonstrate // desiredAssertionStatus() method import java.util.*; public class Test { public Object obj; public static void main(String[] args) throws ClassNotFoundException { // returns the Class object for this class Class myClass = Class.forName("Test"); System.out.println("Class represented by myClass: " + myClass.toString()); // Get the Assertion Status of myClass // using desiredAssertionStatus() method System.out.println("Assertion Status of myClass: " + myClass.desiredAssertionStatus()); } } Output: Class represented by myClass: class Test Assertion Status of myClass: false Example 2: Java // Java program to demonstrate // desiredAssertionStatus() method import java.util.*; class Main { private Object obj; public static void main(String[] args) throws ClassNotFoundException, NoSuchFieldException { try { // returns the Class object for this class Class myClass = Class.forName("Main"); System.out.println("Class represented by myClass: " + myClass.toString()); // Get the Assertion Status of myClass // using desiredAssertionStatus() method System.out.println("Assertion Status of myClass: " + myClass.desiredAssertionStatus()); } catch (Exception e) { System.out.println(e); } } } Output: Class represented by myClass: class Main Assertion Status of myClass: false Reference: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#desiredAssertionStatus-- Comment More infoAdvertise with us Next Article Class desiredAssertionStatus() method in Java with Examples S srinam Follow Improve Article Tags : Java Java-lang package Java-Functions Java.lang.Class Practice Tags : Java Similar Reads Collection contains() method in Java with Examples The contains(Object element) of java.util.Collection interface is used to check whether the element 'element' exists in this collection. This method returns a boolean value depicting the presence of the element. If the element is present, it returns true, else it returns false. Syntax: Collection.co 3 min read Collection add() Method in Java with Examples The add(E element) of java.util.Collection interface is used to add the element 'element' to this collection. This method returns a boolean value depicting the successfulness of the operation. If the element was added, it returns true, else it returns false. Syntax: Collection.add(E element) Paramet 4 min read Class getMethods() method in Java with Examples The getMethods() method of java.lang.Class class is used to get the methods of this class, which are the methods that are public and its members or the members of its member classes and interfaces. The method returns the methods of this class in the form of an array of Method objects. Syntax: public 2 min read Class getSigners() method in Java with Examples The getSigners() method of java.lang.Class class is used to get the signers of this class. The method returns the signers of this class. If this object represents a primitive type or void, then this method returns null. Syntax: public Object[] getSigners() Parameter: This method does not accept any 2 min read Class getClasses() method in Java with Examples The getClasses() method of java.lang.Class class is used to get the classes of this class, which are the class and interfaces that are public and its members. The method returns the classes of this class in the form of array of Class objects. Syntax: public Class[] getClasses() Parameter: This metho 2 min read Like