If I write an enum like below ,
public enum States{
}
IDE is generating .class file States.class in target, same as if I would have written a class named - States
So here , does .class file simply tells me existence of Java byte code for enum type or does it mean that enum is eventually a type of Java Class type?