Software should be able to generate java enum class containing:
- package
- imports
- javadoc
- list of constants as JAVA_CONSTANT("ConstantValue")
- constructor
- fromValue() method to get a constant from its value
- value() method to get the value
- overriden toString() method to print values
Software should be able to generate java enum class containing: