Java Class.getModifiers()
Syntax
Class.getModifiers() has the following syntax.
public int getModifiers()
Example
In the following code shows how to use Class.getModifiers() method.
/* w ww . jav a 2 s . c o m*/
import java.lang.reflect.Modifier;
public class Main {
public static void main(String[] args) {
Main c = new Main();
Class cls = c.getClass();
// returns the Java language modifiers for this class
int i = cls.getModifiers();
String retval = Modifier.toString(i);
System.out.println(retval);
}
}
The code above generates the following result.