Java Reflection - Java Class.isSynthetic()








Syntax

Class.isSynthetic() has the following syntax.

public boolean isSynthetic()

Example

In the following code shows how to use Class.isSynthetic() method.

//from   ww  w .j av a  2s  .c  o  m

public class Main {

   public static void main(String[] args) {

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

     // returns true if this class is a synthetic class, else false
     boolean retval = cls.isSynthetic();
     System.out.println(retval);        
   }
}

The code above generates the following result.