Java Class.isEnum()
Syntax
Class.isEnum() has the following syntax.
public boolean isEnum()
Example
In the following code shows how to use Class.isEnum() method.
enum Language {/*w w w.j a v a2 s . c o 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.