Enum.values()在哪里定义?

时间:2009-08-12 18:49:56

标签: java enums

每个Java枚举都有一个静态值()方法可以像这样使用

for (MyEnum enum : MyEnum.values()) {
    // Do something with enum
}

但是,我无法弄清楚这个方法的定义。在Javadoc中没有提到它,它也没有出现在源文件中的任何地方。

3 个答案:

答案 0 :(得分:9)

这是Java Language Specification所要求的:values将为所有枚举隐式声明valueOf

/**
* Returns an array containing the constants of this enum 
* type, in the order they're declared.  This method may be
* used to iterate over the constants as follows:
*
*    for(E c : E.values())
*        System.out.println(c);
*
* @return an array containing the constants of this enum 
* type, in the order they're declared
*/
public static E[] values();

/**
* Returns the enum constant of this type with the specified
* name.
* The string must match exactly an identifier used to declare
* an enum constant in this type.  (Extraneous whitespace 
* characters are not permitted.)
* 
* @return the enum constant with the specified name
* @throws IllegalArgumentException if this enum type has no
* constant with the specified name
*/
public static E valueOf(String name);

这些方法是在编译期间添加的,因此如果您使用javap来反汇编代码,您实际上可以查看它们的正文。

答案 1 :(得分:3)

它在JLS, section 8.9 "Enums"

中定义

答案 2 :(得分:2)

没有明确定义,就像没有定义java数组的length属性一样。它隐含可用于具体的Enum类型。