src/java.base/share/classes/java/util/Objects.java
author darcy
Fri, 03 May 2019 09:25:59 -0700
changeset 54709 90855d9c3c39
parent 50095 bf2f27b92064
permissions -rw-r--r--
8223265: Clarify operational semantics of java.util.Objects.equals() Reviewed-by: bpb, alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4038
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
     1
/*
38356
1e4ecca97792 8155794: Move Objects.checkIndex BiFunction accepting methods to an internal package
psandoz
parents: 37345
diff changeset
     2
 * Copyright (c) 2009, 2016, Oracle and/or its affiliates. All rights reserved.
4038
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
     4
 *
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4504
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
4038
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4504
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
4038
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    10
 *
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    15
 * accompanied this code).
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    16
 *
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4504
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4504
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4504
diff changeset
    23
 * questions.
4038
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    24
 */
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    25
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    26
package java.util;
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    27
38356
1e4ecca97792 8155794: Move Objects.checkIndex BiFunction accepting methods to an internal package
psandoz
parents: 37345
diff changeset
    28
import jdk.internal.util.Preconditions;
1e4ecca97792 8155794: Move Objects.checkIndex BiFunction accepting methods to an internal package
psandoz
parents: 37345
diff changeset
    29
import jdk.internal.vm.annotation.ForceInline;
37345
9cb6e1141bdb 8146458: Improve exception reporting for Objects.checkIndex/checkFromToIndex/checkFromIndexSize
psandoz
parents: 34360
diff changeset
    30
17465
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
    31
import java.util.function.Supplier;
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
    32
4038
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    33
/**
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    34
 * This class consists of {@code static} utility methods for operating
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    35
 * on objects, or checking certain conditions before operation.  These utilities
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    36
 * include {@code null}-safe or {@code null}-tolerant methods for computing the
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    37
 * hash code of an object, returning a string for an object, comparing two
50095
bf2f27b92064 8202745: Remove hyphens from "out-of-bounds".
goetz
parents: 47216
diff changeset
    38
 * objects, and checking if indexes or sub-range values are out of bounds.
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    39
 *
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    40
 * @apiNote
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    41
 * Static methods such as {@link Objects#checkIndex},
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    42
 * {@link Objects#checkFromToIndex}, and {@link Objects#checkFromIndexSize} are
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    43
 * provided for the convenience of checking if values corresponding to indexes
50095
bf2f27b92064 8202745: Remove hyphens from "out-of-bounds".
goetz
parents: 47216
diff changeset
    44
 * and sub-ranges are out of bounds.
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    45
 * Variations of these static methods support customization of the runtime
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    46
 * exception, and corresponding exception detail message, that is thrown when
50095
bf2f27b92064 8202745: Remove hyphens from "out-of-bounds".
goetz
parents: 47216
diff changeset
    47
 * values are out of bounds.  Such methods accept a functional interface
37345
9cb6e1141bdb 8146458: Improve exception reporting for Objects.checkIndex/checkFromToIndex/checkFromIndexSize
psandoz
parents: 34360
diff changeset
    48
 * argument, instances of {@code BiFunction}, that maps out-of-bound values to a
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    49
 * runtime exception.  Care should be taken when using such methods in
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    50
 * combination with an argument that is a lambda expression, method reference or
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    51
 * class that capture values.  In such cases the cost of capture, related to
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
    52
 * functional interface allocation, may exceed the cost of checking bounds.
4038
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    53
 *
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    54
 * @since 1.7
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    55
 */
4165
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    56
public final class Objects {
4038
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    57
    private Objects() {
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    58
        throw new AssertionError("No java.util.Objects instances for you!");
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    59
    }
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    60
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    61
    /**
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    62
     * Returns {@code true} if the arguments are equal to each other
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    63
     * and {@code false} otherwise.
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    64
     * Consequently, if both arguments are {@code null}, {@code true}
54709
90855d9c3c39 8223265: Clarify operational semantics of java.util.Objects.equals()
darcy
parents: 50095
diff changeset
    65
     * is returned.  Otherwise, if the first argument is not {@code
90855d9c3c39 8223265: Clarify operational semantics of java.util.Objects.equals()
darcy
parents: 50095
diff changeset
    66
     * null}, equality is determined by calling the {@link
90855d9c3c39 8223265: Clarify operational semantics of java.util.Objects.equals()
darcy
parents: 50095
diff changeset
    67
     * Object#equals equals} method of the first argument with the
90855d9c3c39 8223265: Clarify operational semantics of java.util.Objects.equals()
darcy
parents: 50095
diff changeset
    68
     * second argument of this method. Otherwise, {@code false} is
90855d9c3c39 8223265: Clarify operational semantics of java.util.Objects.equals()
darcy
parents: 50095
diff changeset
    69
     * returned.
4038
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    70
     *
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    71
     * @param a an object
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    72
     * @param b an object to be compared with {@code a} for equality
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    73
     * @return {@code true} if the arguments are equal to each other
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    74
     * and {@code false} otherwise
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    75
     * @see Object#equals(Object)
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    76
     */
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    77
    public static boolean equals(Object a, Object b) {
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    78
        return (a == b) || (a != null && a.equals(b));
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    79
    }
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
    80
4165
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    81
   /**
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    82
    * Returns {@code true} if the arguments are deeply equal to each other
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    83
    * and {@code false} otherwise.
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    84
    *
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    85
    * Two {@code null} values are deeply equal.  If both arguments are
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    86
    * arrays, the algorithm in {@link Arrays#deepEquals(Object[],
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    87
    * Object[]) Arrays.deepEquals} is used to determine equality.
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    88
    * Otherwise, equality is determined by using the {@link
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    89
    * Object#equals equals} method of the first argument.
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    90
    *
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    91
    * @param a an object
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    92
    * @param b an object to be compared with {@code a} for deep equality
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    93
    * @return {@code true} if the arguments are deeply equal to each other
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    94
    * and {@code false} otherwise
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    95
    * @see Arrays#deepEquals(Object[], Object[])
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    96
    * @see Objects#equals(Object, Object)
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    97
    */
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    98
    public static boolean deepEquals(Object a, Object b) {
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
    99
        if (a == b)
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   100
            return true;
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   101
        else if (a == null || b == null)
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   102
            return false;
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   103
        else
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   104
            return Arrays.deepEquals0(a, b);
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   105
    }
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   106
4038
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   107
    /**
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   108
     * Returns the hash code of a non-{@code null} argument and 0 for
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   109
     * a {@code null} argument.
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   110
     *
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   111
     * @param o an object
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   112
     * @return the hash code of a non-{@code null} argument and 0 for
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   113
     * a {@code null} argument
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   114
     * @see Object#hashCode
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   115
     */
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   116
    public static int hashCode(Object o) {
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   117
        return o != null ? o.hashCode() : 0;
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   118
    }
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   119
4165
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   120
   /**
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   121
    * Generates a hash code for a sequence of input values. The hash
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   122
    * code is generated as if all the input values were placed into an
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   123
    * array, and that array were hashed by calling {@link
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   124
    * Arrays#hashCode(Object[])}.
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   125
    *
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   126
    * <p>This method is useful for implementing {@link
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   127
    * Object#hashCode()} on objects containing multiple fields. For
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   128
    * example, if an object that has three fields, {@code x}, {@code
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   129
    * y}, and {@code z}, one could write:
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   130
    *
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   131
    * <blockquote><pre>
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   132
    * &#064;Override public int hashCode() {
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   133
    *     return Objects.hash(x, y, z);
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   134
    * }
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   135
    * </pre></blockquote>
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   136
    *
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   137
    * <b>Warning: When a single object reference is supplied, the returned
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   138
    * value does not equal the hash code of that object reference.</b> This
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   139
    * value can be computed by calling {@link #hashCode(Object)}.
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   140
    *
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   141
    * @param values the values to be hashed
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   142
    * @return a hash value of the sequence of input values
4504
0a031ee3f7a4 6909057: @see Arrays#hashCode missing particular method specification in j.u.Objects.hash
darcy
parents: 4165
diff changeset
   143
    * @see Arrays#hashCode(Object[])
4165
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   144
    * @see List#hashCode
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   145
    */
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   146
    public static int hash(Object... values) {
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   147
        return Arrays.hashCode(values);
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   148
    }
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   149
4038
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   150
    /**
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   151
     * Returns the result of calling {@code toString} for a non-{@code
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   152
     * null} argument and {@code "null"} for a {@code null} argument.
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   153
     *
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   154
     * @param o an object
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   155
     * @return the result of calling {@code toString} for a non-{@code
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   156
     * null} argument and {@code "null"} for a {@code null} argument
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   157
     * @see Object#toString
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   158
     * @see String#valueOf(Object)
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   159
     */
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   160
    public static String toString(Object o) {
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   161
        return String.valueOf(o);
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   162
    }
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   163
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   164
    /**
4165
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   165
     * Returns the result of calling {@code toString} on the first
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   166
     * argument if the first argument is not {@code null} and returns
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   167
     * the second argument otherwise.
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   168
     *
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   169
     * @param o an object
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   170
     * @param nullDefault string to return if the first argument is
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   171
     *        {@code null}
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   172
     * @return the result of calling {@code toString} on the first
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   173
     * argument if it is not {@code null} and the second argument
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   174
     * otherwise.
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   175
     * @see Objects#toString(Object)
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   176
     */
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   177
    public static String toString(Object o, String nullDefault) {
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   178
        return (o != null) ? o.toString() : nullDefault;
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   179
    }
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   180
7cd799c224da 6891113: More methods for java.util.Objects: deepEquals, hash, toString with default
darcy
parents: 4061
diff changeset
   181
    /**
4038
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   182
     * Returns 0 if the arguments are identical and {@code
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   183
     * c.compare(a, b)} otherwise.
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   184
     * Consequently, if both arguments are {@code null} 0
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   185
     * is returned.
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   186
     *
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   187
     * <p>Note that if one of the arguments is {@code null}, a {@code
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   188
     * NullPointerException} may or may not be thrown depending on
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   189
     * what ordering policy, if any, the {@link Comparator Comparator}
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   190
     * chooses to have for {@code null} values.
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   191
     *
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   192
     * @param <T> the type of the objects being compared
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   193
     * @param a an object
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   194
     * @param b an object to be compared with {@code a}
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   195
     * @param c the {@code Comparator} to compare the first two arguments
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   196
     * @return 0 if the arguments are identical and {@code
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   197
     * c.compare(a, b)} otherwise.
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   198
     * @see Comparable
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   199
     * @see Comparator
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   200
     */
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   201
    public static <T> int compare(T a, T b, Comparator<? super T> c) {
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   202
        return (a == b) ? 0 :  c.compare(a, b);
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   203
    }
4061
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   204
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   205
    /**
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   206
     * Checks that the specified object reference is not {@code null}. This
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   207
     * method is designed primarily for doing parameter validation in methods
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   208
     * and constructors, as demonstrated below:
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   209
     * <blockquote><pre>
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   210
     * public Foo(Bar bar) {
8166
13423c0952ad 7012540: java.util.Objects.nonNull() incorrectly named
briangoetz
parents: 5506
diff changeset
   211
     *     this.bar = Objects.requireNonNull(bar);
4061
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   212
     * }
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   213
     * </pre></blockquote>
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   214
     *
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   215
     * @param obj the object reference to check for nullity
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   216
     * @param <T> the type of the reference
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   217
     * @return {@code obj} if not {@code null}
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   218
     * @throws NullPointerException if {@code obj} is {@code null}
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   219
     */
8166
13423c0952ad 7012540: java.util.Objects.nonNull() incorrectly named
briangoetz
parents: 5506
diff changeset
   220
    public static <T> T requireNonNull(T obj) {
4061
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   221
        if (obj == null)
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   222
            throw new NullPointerException();
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   223
        return obj;
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   224
    }
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   225
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   226
    /**
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   227
     * Checks that the specified object reference is not {@code null} and
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   228
     * throws a customized {@link NullPointerException} if it is. This method
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   229
     * is designed primarily for doing parameter validation in methods and
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   230
     * constructors with multiple parameters, as demonstrated below:
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   231
     * <blockquote><pre>
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   232
     * public Foo(Bar bar, Baz baz) {
8166
13423c0952ad 7012540: java.util.Objects.nonNull() incorrectly named
briangoetz
parents: 5506
diff changeset
   233
     *     this.bar = Objects.requireNonNull(bar, "bar must not be null");
13423c0952ad 7012540: java.util.Objects.nonNull() incorrectly named
briangoetz
parents: 5506
diff changeset
   234
     *     this.baz = Objects.requireNonNull(baz, "baz must not be null");
4061
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   235
     * }
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   236
     * </pre></blockquote>
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   237
     *
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   238
     * @param obj     the object reference to check for nullity
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   239
     * @param message detail message to be used in the event that a {@code
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   240
     *                NullPointerException} is thrown
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   241
     * @param <T> the type of the reference
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   242
     * @return {@code obj} if not {@code null}
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   243
     * @throws NullPointerException if {@code obj} is {@code null}
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   244
     */
8166
13423c0952ad 7012540: java.util.Objects.nonNull() incorrectly named
briangoetz
parents: 5506
diff changeset
   245
    public static <T> T requireNonNull(T obj, String message) {
4061
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   246
        if (obj == null)
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   247
            throw new NullPointerException(message);
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   248
        return obj;
35a627ad2443 6889858: Add nonNull methods to java.util.Objects
darcy
parents: 4038
diff changeset
   249
    }
17431
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   250
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   251
    /**
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   252
     * Returns {@code true} if the provided reference is {@code null} otherwise
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   253
     * returns {@code false}.
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   254
     *
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   255
     * @apiNote This method exists to be used as a
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   256
     * {@link java.util.function.Predicate}, {@code filter(Objects::isNull)}
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   257
     *
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   258
     * @param obj a reference to be checked against {@code null}
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   259
     * @return {@code true} if the provided reference is {@code null} otherwise
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   260
     * {@code false}
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   261
     *
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   262
     * @see java.util.function.Predicate
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   263
     * @since 1.8
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   264
     */
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   265
    public static boolean isNull(Object obj) {
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   266
        return obj == null;
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   267
    }
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   268
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   269
    /**
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   270
     * Returns {@code true} if the provided reference is non-{@code null}
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   271
     * otherwise returns {@code false}.
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   272
     *
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   273
     * @apiNote This method exists to be used as a
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   274
     * {@link java.util.function.Predicate}, {@code filter(Objects::nonNull)}
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   275
     *
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   276
     * @param obj a reference to be checked against {@code null}
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   277
     * @return {@code true} if the provided reference is non-{@code null}
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   278
     * otherwise {@code false}
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   279
     *
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   280
     * @see java.util.function.Predicate
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   281
     * @since 1.8
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   282
     */
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   283
    public static boolean nonNull(Object obj) {
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   284
        return obj != null;
335d87f0d817 8013712: Add Objects.nonNull and Objects.isNull
mduigou
parents: 16864
diff changeset
   285
    }
17465
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   286
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   287
    /**
33277
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   288
     * Returns the first argument if it is non-{@code null} and
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   289
     * otherwise returns the non-{@code null} second argument.
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   290
     *
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   291
     * @param obj an object
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   292
     * @param defaultObj a non-{@code null} object to return if the first argument
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   293
     *                   is {@code null}
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   294
     * @param <T> the type of the reference
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   295
     * @return the first argument if it is non-{@code null} and
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   296
     *        otherwise the second argument if it is non-{@code null}
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   297
     * @throws NullPointerException if both {@code obj} is null and
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   298
     *        {@code defaultObj} is {@code null}
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   299
     * @since 9
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   300
     */
33675
7d9d372a41df 8141652: Rename methods Objects.nonNullElse* to requireNonNullElse*
rriggs
parents: 33277
diff changeset
   301
    public static <T> T requireNonNullElse(T obj, T defaultObj) {
33277
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   302
        return (obj != null) ? obj : requireNonNull(defaultObj, "defaultObj");
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   303
    }
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   304
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   305
    /**
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   306
     * Returns the first argument if it is non-{@code null} and otherwise
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   307
     * returns the non-{@code null} value of {@code supplier.get()}.
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   308
     *
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   309
     * @param obj an object
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   310
     * @param supplier of a non-{@code null} object to return if the first argument
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   311
     *                 is {@code null}
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   312
     * @param <T> the type of the first argument and return type
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   313
     * @return the first argument if it is non-{@code null} and otherwise
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   314
     *         the value from {@code supplier.get()} if it is non-{@code null}
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   315
     * @throws NullPointerException if both {@code obj} is null and
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   316
     *        either the {@code supplier} is {@code null} or
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   317
     *        the {@code supplier.get()} value is {@code null}
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   318
     * @since 9
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   319
     */
33675
7d9d372a41df 8141652: Rename methods Objects.nonNullElse* to requireNonNullElse*
rriggs
parents: 33277
diff changeset
   320
    public static <T> T requireNonNullElseGet(T obj, Supplier<? extends T> supplier) {
7d9d372a41df 8141652: Rename methods Objects.nonNullElse* to requireNonNullElse*
rriggs
parents: 33277
diff changeset
   321
        return (obj != null) ? obj
7d9d372a41df 8141652: Rename methods Objects.nonNullElse* to requireNonNullElse*
rriggs
parents: 33277
diff changeset
   322
                : requireNonNull(requireNonNull(supplier, "supplier").get(), "supplier.get()");
33277
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   323
    }
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   324
90a40b7f53ef 8138963: java.lang.Objects new method to default to non-null
rriggs
parents: 32929
diff changeset
   325
    /**
17465
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   326
     * Checks that the specified object reference is not {@code null} and
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   327
     * throws a customized {@link NullPointerException} if it is.
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   328
     *
17475
24f8cffd7390 8014677: Correct docs warning for Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17465
diff changeset
   329
     * <p>Unlike the method {@link #requireNonNull(Object, String)},
17465
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   330
     * this method allows creation of the message to be deferred until
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   331
     * after the null check is made. While this may confer a
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   332
     * performance advantage in the non-null case, when deciding to
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   333
     * call this method care should be taken that the costs of
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   334
     * creating the message supplier are less than the cost of just
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   335
     * creating the string message directly.
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   336
     *
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   337
     * @param obj     the object reference to check for nullity
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   338
     * @param messageSupplier supplier of the detail message to be
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   339
     * used in the event that a {@code NullPointerException} is thrown
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   340
     * @param <T> the type of the reference
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   341
     * @return {@code obj} if not {@code null}
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   342
     * @throws NullPointerException if {@code obj} is {@code null}
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   343
     * @since 1.8
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   344
     */
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   345
    public static <T> T requireNonNull(T obj, Supplier<String> messageSupplier) {
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   346
        if (obj == null)
43802
5f95a1b1f73d 8174950: Gracefully handle null Supplier in Objects.requireNonNull
simonis
parents: 38356
diff changeset
   347
            throw new NullPointerException(messageSupplier == null ?
5f95a1b1f73d 8174950: Gracefully handle null Supplier in Objects.requireNonNull
simonis
parents: 38356
diff changeset
   348
                                           null : messageSupplier.get());
17465
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   349
        return obj;
6ea0e148a562 8014365: Restore Objects.requireNonNull(T, Supplier<String>)
darcy
parents: 17431
diff changeset
   350
    }
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   351
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   352
    /**
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   353
     * Checks if the {@code index} is within the bounds of the range from
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   354
     * {@code 0} (inclusive) to {@code length} (exclusive).
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   355
     *
50095
bf2f27b92064 8202745: Remove hyphens from "out-of-bounds".
goetz
parents: 47216
diff changeset
   356
     * <p>The {@code index} is defined to be out of bounds if any of the
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   357
     * following inequalities is true:
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   358
     * <ul>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   359
     *  <li>{@code index < 0}</li>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   360
     *  <li>{@code index >= length}</li>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   361
     *  <li>{@code length < 0}, which is implied from the former inequalities</li>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   362
     * </ul>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   363
     *
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   364
     * @param index the index
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   365
     * @param length the upper-bound (exclusive) of the range
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   366
     * @return {@code index} if it is within bounds of the range
50095
bf2f27b92064 8202745: Remove hyphens from "out-of-bounds".
goetz
parents: 47216
diff changeset
   367
     * @throws IndexOutOfBoundsException if the {@code index} is out of bounds
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   368
     * @since 9
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   369
     */
38356
1e4ecca97792 8155794: Move Objects.checkIndex BiFunction accepting methods to an internal package
psandoz
parents: 37345
diff changeset
   370
    @ForceInline
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   371
    public static
37345
9cb6e1141bdb 8146458: Improve exception reporting for Objects.checkIndex/checkFromToIndex/checkFromIndexSize
psandoz
parents: 34360
diff changeset
   372
    int checkIndex(int index, int length) {
38356
1e4ecca97792 8155794: Move Objects.checkIndex BiFunction accepting methods to an internal package
psandoz
parents: 37345
diff changeset
   373
        return Preconditions.checkIndex(index, length, null);
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   374
    }
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   375
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   376
    /**
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   377
     * Checks if the sub-range from {@code fromIndex} (inclusive) to
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   378
     * {@code toIndex} (exclusive) is within the bounds of range from {@code 0}
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   379
     * (inclusive) to {@code length} (exclusive).
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   380
     *
50095
bf2f27b92064 8202745: Remove hyphens from "out-of-bounds".
goetz
parents: 47216
diff changeset
   381
     * <p>The sub-range is defined to be out of bounds if any of the following
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   382
     * inequalities is true:
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   383
     * <ul>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   384
     *  <li>{@code fromIndex < 0}</li>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   385
     *  <li>{@code fromIndex > toIndex}</li>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   386
     *  <li>{@code toIndex > length}</li>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   387
     *  <li>{@code length < 0}, which is implied from the former inequalities</li>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   388
     * </ul>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   389
     *
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   390
     * @param fromIndex the lower-bound (inclusive) of the sub-range
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   391
     * @param toIndex the upper-bound (exclusive) of the sub-range
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   392
     * @param length the upper-bound (exclusive) the range
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   393
     * @return {@code fromIndex} if the sub-range within bounds of the range
50095
bf2f27b92064 8202745: Remove hyphens from "out-of-bounds".
goetz
parents: 47216
diff changeset
   394
     * @throws IndexOutOfBoundsException if the sub-range is out of bounds
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   395
     * @since 9
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   396
     */
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   397
    public static
37345
9cb6e1141bdb 8146458: Improve exception reporting for Objects.checkIndex/checkFromToIndex/checkFromIndexSize
psandoz
parents: 34360
diff changeset
   398
    int checkFromToIndex(int fromIndex, int toIndex, int length) {
38356
1e4ecca97792 8155794: Move Objects.checkIndex BiFunction accepting methods to an internal package
psandoz
parents: 37345
diff changeset
   399
        return Preconditions.checkFromToIndex(fromIndex, toIndex, length, null);
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   400
    }
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   401
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   402
    /**
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   403
     * Checks if the sub-range from {@code fromIndex} (inclusive) to
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   404
     * {@code fromIndex + size} (exclusive) is within the bounds of range from
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   405
     * {@code 0} (inclusive) to {@code length} (exclusive).
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   406
     *
50095
bf2f27b92064 8202745: Remove hyphens from "out-of-bounds".
goetz
parents: 47216
diff changeset
   407
     * <p>The sub-range is defined to be out of bounds if any of the following
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   408
     * inequalities is true:
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   409
     * <ul>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   410
     *  <li>{@code fromIndex < 0}</li>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   411
     *  <li>{@code size < 0}</li>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   412
     *  <li>{@code fromIndex + size > length}, taking into account integer overflow</li>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   413
     *  <li>{@code length < 0}, which is implied from the former inequalities</li>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   414
     * </ul>
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   415
     *
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   416
     * @param fromIndex the lower-bound (inclusive) of the sub-interval
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   417
     * @param size the size of the sub-range
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   418
     * @param length the upper-bound (exclusive) of the range
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   419
     * @return {@code fromIndex} if the sub-range within bounds of the range
50095
bf2f27b92064 8202745: Remove hyphens from "out-of-bounds".
goetz
parents: 47216
diff changeset
   420
     * @throws IndexOutOfBoundsException if the sub-range is out of bounds
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   421
     * @since 9
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   422
     */
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   423
    public static
37345
9cb6e1141bdb 8146458: Improve exception reporting for Objects.checkIndex/checkFromToIndex/checkFromIndexSize
psandoz
parents: 34360
diff changeset
   424
    int checkFromIndexSize(int fromIndex, int size, int length) {
38356
1e4ecca97792 8155794: Move Objects.checkIndex BiFunction accepting methods to an internal package
psandoz
parents: 37345
diff changeset
   425
        return Preconditions.checkFromIndexSize(fromIndex, size, length, null);
32929
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   426
    }
7e1bb9268b8a 8135248: Add utility methods to check indexes and ranges
psandoz
parents: 25859
diff changeset
   427
4038
ea7aa63169db 6797535: Add shared two argument static equals method to the platform
darcy
parents:
diff changeset
   428
}