Java Reflection - 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 {/*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.