-
Bug
-
Resolution: Fixed
-
P3
-
5.0
-
b46
-
generic
-
solaris_8
the following program should print "false", as the classof a is an anonymous
class that was not declared as an enumeration type.
The proper implementation of isEnum should check both the ACC_ENUM bit on
the class AND that the direct supertype is java.lang.Enum. Only when both
conditions are true should the method return true.
enum E {
a {};
public static void main(String[] args) {
System.out.println(a.getClass().isEnum());
}
}
class that was not declared as an enumeration type.
The proper implementation of isEnum should check both the ACC_ENUM bit on
the class AND that the direct supertype is java.lang.Enum. Only when both
conditions are true should the method return true.
enum E {
a {};
public static void main(String[] args) {
System.out.println(a.getClass().isEnum());
}
}
- relates to
-
JDK-8141368 Typo in java/lang/Class/IsEnum.java test
-
- Closed
-
-
JDK-6708424 (reflect) Class.isEnum() returns useless values for anonymous enum values
-
- Closed
-
-
JDK-8227202 clarify Class.isEnum() doc
-
- Resolved
-