Is something like this possible in Java. I want to take an existing enum and add more elements to it
enum A {a,b,c}
enum B extends A {d}
/*B is {a,b,c,d}*/
|
|
No, you can't do this in Java. Aside from anything else, If you could tell us more about how you want to use this, we could potentially suggest alternative solutions. |
|||||||||||||||||||||
|
|
Enums represent a complete enumeration of possible values. So the (unhelpful) answer is no. As an example of a real problem take weekdays, weekend days and, the union, days of week. We could define all days within days-of-week but then we would not be able to represent properties special to either weekdays and weekend-days. What we could do, is have three enum types with a mapping between weekdays/weekend-days and days-of-week.
Alternatively, we could have an open-ended interface for day-of-week:
Or we could combine the two approaches:
|
|||||||||||||||||||||
|
|
The recommended solution to this is the extensible enum pattern. This involves creating an interface and using that where you currently use the enum. Then make the enum implement the interface. You can add more constants by making that new enum also extend the interface. |
|||||||
|
|
Good article here: Creating Java Enum Objects at Runtime |
|||||||||||
|
can be written as:
How it can be useful: Let say we want something like: We have events and we are using enums. Those enums can be grouped by similar processing. If we have operation with many elements, then some events starts operation, some are just step and other end the operation. To gather such operation and avoid long switch case we can group them as in example and use:
I wrote something interesting example but I'm not sure of it's disadvantages:
Add some more advanced:
At above if we have some fail (myEvent.is(State_StatusGroup.FAIL)) then iterating by previous events we can easily check if we must revert money transfer by:
It can be useful for:
|
||||
|
|
|
Under the covers your ENUM is just a regular class generated by the compiler. That generated class extends Here is a test enum:
The resulting code from javap:
Conceivably you could type this class on your own and drop the "final". But the compiler prevents you from extending "java.lang.Enum" directly. You could decide NOT to extend java.lang.Enum, but then your class and its derived classes would not be an instanceof java.lang.Enum ... which might not really matter to you any way! |
||||
|
|
|
I've explained how you can achieve extending enums in this article: Extending enumerations |
|||
|
|
|
Having had this same problem myself I'd like to post my perspective. I think that there are a couple motivating factors for doing something like this:
Using an interface doesn't really cut it: you can accidentally get duplicate enum values. Not desirable. I ended up just combining the enums: this ensures that there cannot be any duplicate values, at the expense of being less tightly tied to its associated class. But, I figured the duplicate issue was my main concern... |
|||
|
|
|
I tend to avoid enums, because they are not extensible. To stay with the example of the OP, if A is in a library and B in your own code, you can't extend A if it is an enum. This is how I sometimes replace enums:
There are some pits to avoid, see the comments in the code. Depending on your needs, this is a solid, extensible alternative to enums. |
|||
|
|
|
This is how I enhance the enum inheritance pattern with runtime check in static initializer.
The There is still copy-paste involved for declaring values but the program fails fast if somebody added or modified a value in the base class without updating extending ones. Common behavior for different enums extending each other:
Base enum, with verifying method:
Extension sample:
|
|||
|
|