enum E { FOO; } class A { public static void main(String[] args) { System.out.println(E.FOO.toString()); } }