If I have a class that contains an enum type, can I extend this class and override the enum type or add more constants to this enum? The purpose is that user will b
enum
Enums are exactly final inner classes that extends java.lang.Enum. You cannot extend, override or inherit an enum.
Enums
java.lang.Enum