I saw a java program where I found the values() method which is called under a user defined enum.
I couldn't find its api documention -- where is the documentation?
|
I saw a java program where I found the I couldn't find its api documention -- where is the documentation? |
||||
|
|
|
There's no javadoc for it because it's generated by the compiler for each individual enum class. It's static, and it's not an inherited method. |
|||
|
|
|
Enums are part of the language you find all details in The Java Language Specification, Third Edition Each enum has the following implicitly declared static methods:
|
|||
|
|
Read Enum Types tutorial. |
|||
|
|