Java Data Type Tutorial - Java Enum.getDeclaringClass()








Syntax

Enum.getDeclaringClass() has the following syntax.

public final Class <E> getDeclaringClass()

Example

In the following code shows how to use Enum.getDeclaringClass() method.

/*  w w w  . java  2 s  .  c  o  m*/
enum Tutorial {
 
  M {     
    },

  N {
    };
}

public class Main {

   public static void main(String args[]) {
       
     System.out.println(Tutorial.M.getDeclaringClass());  
   }
}

The code above generates the following result.