A DESCRIPTION OF THE PROBLEM :
Every enum class has the static methods values() and valueOf(String). However the java.lang.Enum docs doesn't says a single word about these. So many developers, specially begginers, misses these.
The docs should state in the description of the class that the compiler generate these two methods for every subclass, and also show how to use they.
The static method valueOf(Class,String) of the Enum class, should state that subclasses could use their static method valueOf(String) instead of valueOf(Class,String).
ACTUAL -
The java.lang.Enum docs doesn't says anything about values() and valueOf(String).
URL OF FAULTY DOCUMENTATION :
http://java.sun.com/javase/6/docs/api/java/lang/Enum.html
Every enum class has the static methods values() and valueOf(String). However the java.lang.Enum docs doesn't says a single word about these. So many developers, specially begginers, misses these.
The docs should state in the description of the class that the compiler generate these two methods for every subclass, and also show how to use they.
The static method valueOf(Class,String) of the Enum class, should state that subclasses could use their static method valueOf(String) instead of valueOf(Class,String).
ACTUAL -
The java.lang.Enum docs doesn't says anything about values() and valueOf(String).
URL OF FAULTY DOCUMENTATION :
http://java.sun.com/javase/6/docs/api/java/lang/Enum.html
- relates to
-
JDK-6378701 (enum) Unclear purpose of EnumConstantNotPresentException
-
- Resolved
-
-
JDK-8184708 (enum spec) explanation of values() and valueOf(String) could be improved
-
- Open
-
-
JDK-6327048 Enum javadoc could link to JLS
-
- Resolved
-