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.
// w w w . j ava 2 s. c om
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.