News

Finally, Enum’s Java documentation doesn’t include a values() method because the compiler manufactures this method while generating the typesafe enum’s class file. You should get into the ...
Because enums are automatically Serializable (see Javadoc API documentation for Enum), there is no need to explicitly add the “implements Serializable” clause following the enum declaration.