Is there any possibility to create an enum A
which inherits properties of enum B
and additionally provides possibility to extend elements?
Example:
Enum A
- one
- two
- three
Enum B:A
- four
No, it is not possible. Base Enums do not support inheritance.