Can enums contain enums?
Can enums contain enums? You cannot inherit one new enum from other enum . The only way you can do something like that, would be using reflection. Can enum have another enum? To initialize the enum with values in another enum. Declare the desired enum as the instance variable. Initialize it with a parameterized constructor. […]