Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-5020490

(reflect) Class.isEnum should return false for specialized enum constants

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 5.0
    • 5.0
    • core-libs

      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());
          }
      }

            darcy Joe Darcy
            gafter Neal Gafter (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: