Example usage for java.lang Class desiredAssertionStatus

List of usage examples for java.lang Class desiredAssertionStatus

Introduction

In this page you can find the example usage for java.lang Class desiredAssertionStatus.

Prototype

public boolean desiredAssertionStatus() 

Source Link

Document

Returns the assertion status that would be assigned to this class if it were to be initialized at the time this method is invoked.

Usage

From source file:Main.java

public static void main(String[] args) {

    Main c = new Main();
    Class cls = c.getClass();

    // returns the name of the class
    String name = cls.getName();//w ww.j  a  va2s.  c om
    System.out.println("Class Name = " + name);

    // returns assertion status
    boolean retval = cls.desiredAssertionStatus();
    System.out.println("status = " + retval);
}