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

(coll) Checked Collections to implement interface to expose the checked type

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P5 P5
    • None
    • 6
    • core-libs

      A DESCRIPTION OF THE REQUEST :
      It would be helpful if the checkedCollection implementations from java.util.Collections (including checkedList, checkedSet, checkedSortedSet) implemented an interface that allowed the checked type to be retrieved. Something like:

      interface CheckedCollection<E> {
          Class<E> getType();
      }

      and something similar for the keyType and valueType of Maps.


      JUSTIFICATION :
      The existing checked collections provide a way of enforcing run-time restrictions of the type of elements added to collections, but no way to discover what the checked-type of a collection actually is.

      In dynamicly evaluated expressions (such as the javaee5 unified expression language), you often want to convert a string value in to a specific type (perhaps via a java.beans.PropertyEditor) so that it can be added to a collection. Currently there is no convenient way to know the type that the string should be converted to.

      In addition, this would allow a safe dynamic casting of collections in some situations, as perhaps intended by the RFE at
      http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6351592
      (which itself was not an adequate solution).
      If the source collection is already of the requested type, it could be returned directly, otherwise a new checked collection could be created. Without the suggested interface, a new collection would be needed every time.

      Finally, any user collection classes that implement type checking could also implement this interface, making it more general than testing for the specific class that java.util.Collections.checkedCollection may return.

            Unassigned Unassigned
            ndcosta Nelson Dcosta (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Imported:
              Indexed: