Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

up vote 4 down vote accepted

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.

share|improve this answer
thanks a lot......... – yagnya Apr 6 '11 at 11:38

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:

public static E[] values();
public static E valueOf(String name);
share|improve this answer
thankssss....... – yagnya Apr 6 '11 at 11:37
I saw a java program where I find the values() method which is called under a user defined enum

Read Enum Types tutorial.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.