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

(coll) Please improve efficiency of implementation of immutable enum sets

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • None
    • 5.0
    • core-libs

      It would be very helpful to have an efficient implementation of
      enumeration set constants, to replace existing uses of bit masks.

      Collections.unmodifiableSet called on an EnumSet
      currently creates a set that is two layers of wrapping around a long.
      Operations using this immutable enum set can be quite inefficient.
      For example, given

         public static final Set<Letter> vowels =
      Collections.unmodifiableSet(EnumSet.of(A, E, I, O, U));

      and

         Set<Letter> x = EnumSet.noneOf(Letter.class);

      the implementation of

         x.addAll(vowels);

      reverts to the very inefficient iterator version rather than a
      bit-based implementation.

      This improvement could be done without adding any API elements, by
      specializing the implementation in Collections.unmodifiableSet.

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

              Created:
              Updated:
              Imported:
              Indexed: