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

Add IdentityException to report that a value object is not valid

XMLWordPrintable

      Value objects, having no identity, cannot be used for synchronization, locking, etc.
      An exception should be defined to be thrown in APIs that cannot work with a value object.

      Methods can be added to java.util.Objects to have a consistent way of checking for value objects and identity objects. For example,

      public static <T> T requireValue(T o) {...}
      public static <T> T requireIdentity(T o) {...}

      public static <T> T requireValue(T o, String message) {...}
      public static <T> T requireIdentity(T o, String message) {...}

      Details TBD

            rriggs Roger Riggs
            rriggs Roger Riggs
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: