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.
// ww w. j a v a 2 s.co 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.