I have a java enum containing some elements, and I want a second enum that contains the same elements as the first, plus additional ones.
Is there a way to tell Java to create a new enum by taking the first and adding the extra elements onto it?
Try this question: Can enums be subclassed to add new elements?
The consensus is that it is not possible