Class.isEnum() has the following syntax.
public boolean isEnum()
In the following code shows how to use Class.isEnum() method.
enum Language {/*from w w w. ja v a2 s . co m*/ C, Java; } public class Main { public static void main(String args[]) { System.out.println(Language.class.isEnum()); } }
The code above generates the following result.