src/java.base/share/classes/java/util/Collections.java
author darcy
Wed, 09 Oct 2019 10:17:50 -0700
changeset 58520 e036ee8bae56
parent 57956 e0b8b019d2f5
child 58679 9c3209ff7550
permissions -rw-r--r--
8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes Reviewed-by: rriggs, chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
55702
339e544d59e3 8213432: Better copies of CopiesList
smarks
parents: 53107
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
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: 3420
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3420
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3420
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3420
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3420
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.util;
48249
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
    27
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
    28
import java.io.IOException;
55702
339e544d59e3 8213432: Better copies of CopiesList
smarks
parents: 53107
diff changeset
    29
import java.io.ObjectInputStream;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.ObjectOutputStream;
48249
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
    31
import java.io.Serializable;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.lang.reflect.Array;
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
    33
import java.util.function.BiConsumer;
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
    34
import java.util.function.BiFunction;
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
    35
import java.util.function.Consumer;
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
    36
import java.util.function.Function;
50697
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
    37
import java.util.function.IntFunction;
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
    38
import java.util.function.Predicate;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
    39
import java.util.function.UnaryOperator;
19603
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
    40
import java.util.stream.IntStream;
18794
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
    41
import java.util.stream.Stream;
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
    42
import java.util.stream.StreamSupport;
55702
339e544d59e3 8213432: Better copies of CopiesList
smarks
parents: 53107
diff changeset
    43
import jdk.internal.access.SharedSecrets;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * This class consists exclusively of static methods that operate on or return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * collections.  It contains polymorphic algorithms that operate on
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * collections, "wrappers", which return a new collection backed by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * specified collection, and a few other odds and ends.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
    51
 * <p>The methods of this class all throw a {@code NullPointerException}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * if the collections or class objects provided to them are null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <p>The documentation for the polymorphic algorithms contained in this class
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * generally includes a brief description of the <i>implementation</i>.  Such
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * descriptions should be regarded as <i>implementation notes</i>, rather than
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * parts of the <i>specification</i>.  Implementors should feel free to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * substitute other algorithms, so long as the specification itself is adhered
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
    59
 * to.  (For example, the algorithm used by {@code sort} does not have to be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * a mergesort, but it does have to be <i>stable</i>.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * <p>The "destructive" algorithms contained in this class, that is, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * algorithms that modify the collection on which they operate, are specified
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
    64
 * to throw {@code UnsupportedOperationException} if the collection does not
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
    65
 * support the appropriate mutation primitive(s), such as the {@code set}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * method.  These algorithms may, but are not required to, throw this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * exception if an invocation would have no effect on the collection.  For
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
    68
 * example, invoking the {@code sort} method on an unmodifiable list that is
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
    69
 * already sorted may or may not throw {@code UnsupportedOperationException}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * <p>This class is a member of the
49433
b6671a111395 8199465: {@docRoot} references need to be updated to reflect new module/package structure
jjg
parents: 48899
diff changeset
    72
 * <a href="{@docRoot}/java.base/java/util/package-summary.html#CollectionsFramework">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * @author  Josh Bloch
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * @author  Neal Gafter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * @see     Collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * @see     Set
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * @see     List
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * @see     Map
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
public class Collections {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    // Suppresses default constructor, ensuring non-instantiability.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    private Collections() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    // Algorithms
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * Tuning parameters for algorithms - Many of the List algorithms have
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * two implementations, one of which is appropriate for RandomAccess
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * lists, the other for "sequential."  Often, the random access variant
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * yields better performance on small sequential access lists.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * tuning parameters below determine the cutoff point for what constitutes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * a "small" sequential access list for each algorithm.  The values below
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * were empirically determined to work well for LinkedList. Hopefully
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * they should be reasonable for other sequential access List
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * implementations.  Those doing performance work on this code would
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * do well to validate the values of these parameters from time to time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * (The first word of each tuning parameter name is the algorithm to which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * it applies.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    private static final int BINARYSEARCH_THRESHOLD   = 5000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    private static final int REVERSE_THRESHOLD        =   18;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    private static final int SHUFFLE_THRESHOLD        =    5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    private static final int FILL_THRESHOLD           =   25;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    private static final int ROTATE_THRESHOLD         =  100;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    private static final int COPY_THRESHOLD           =   10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    private static final int REPLACEALL_THRESHOLD     =   11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    private static final int INDEXOFSUBLIST_THRESHOLD =   35;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * Sorts the specified list into ascending order, according to the
3420
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   116
     * {@linkplain Comparable natural ordering} of its elements.
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   117
     * All elements in the list must implement the {@link Comparable}
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   118
     * interface.  Furthermore, all elements in the list must be
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   119
     * <i>mutually comparable</i> (that is, {@code e1.compareTo(e2)}
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   120
     * must not throw a {@code ClassCastException} for any elements
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   121
     * {@code e1} and {@code e2} in the list).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *
3420
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   123
     * <p>This sort is guaranteed to be <i>stable</i>:  equal elements will
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   124
     * not be reordered as a result of the sort.
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   125
     *
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   126
     * <p>The specified list must be modifiable, but need not be resizable.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *
22285
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
   128
     * @implNote
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
   129
     * This implementation defers to the {@link List#sort(Comparator)}
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
   130
     * method using the specified list and a {@code null} comparator.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
   132
     * @param  <T> the class of the objects in the list
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @param  list the list to be sorted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * @throws ClassCastException if the list contains elements that are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     *         <i>mutually comparable</i> (for example, strings and integers).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @throws UnsupportedOperationException if the specified list's
3420
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   137
     *         list-iterator does not support the {@code set} operation.
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   138
     * @throws IllegalArgumentException (optional) if the implementation
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   139
     *         detects that the natural ordering of the list elements is
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   140
     *         found to violate the {@link Comparable} contract
22285
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
   141
     * @see List#sort(Comparator)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     */
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   143
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    public static <T extends Comparable<? super T>> void sort(List<T> list) {
22285
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
   145
        list.sort(null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * Sorts the specified list according to the order induced by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * specified comparator.  All elements in the list must be <i>mutually
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * comparable</i> using the specified comparator (that is,
3420
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   152
     * {@code c.compare(e1, e2)} must not throw a {@code ClassCastException}
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   153
     * for any elements {@code e1} and {@code e2} in the list).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     *
3420
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   155
     * <p>This sort is guaranteed to be <i>stable</i>:  equal elements will
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   156
     * not be reordered as a result of the sort.
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   157
     *
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   158
     * <p>The specified list must be modifiable, but need not be resizable.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     *
22285
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
   160
     * @implNote
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
   161
     * This implementation defers to the {@link List#sort(Comparator)}
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
   162
     * method using the specified list and comparator.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
   164
     * @param  <T> the class of the objects in the list
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * @param  list the list to be sorted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * @param  c the comparator to determine the order of the list.  A
3420
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   167
     *        {@code null} value indicates that the elements' <i>natural
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     *        ordering</i> should be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @throws ClassCastException if the list contains elements that are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *         <i>mutually comparable</i> using the specified comparator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * @throws UnsupportedOperationException if the specified list's
3420
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   172
     *         list-iterator does not support the {@code set} operation.
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   173
     * @throws IllegalArgumentException (optional) if the comparator is
bba8035eebfa 6804124: Replace "modified mergesort" in java.util.Arrays.sort with timsort
jjb
parents: 2
diff changeset
   174
     *         found to violate the {@link Comparator} contract
22285
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
   175
     * @see List#sort(Comparator)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     */
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 12448
diff changeset
   177
    @SuppressWarnings({"unchecked", "rawtypes"})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    public static <T> void sort(List<T> list, Comparator<? super T> c) {
22285
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
   179
        list.sort(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * Searches the specified list for the specified object using the binary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * search algorithm.  The list must be sorted into ascending order
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * according to the {@linkplain Comparable natural ordering} of its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * elements (as by the {@link #sort(List)} method) prior to making this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * call.  If it is not sorted, the results are undefined.  If the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * contains multiple elements equal to the specified object, there is no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * guarantee which one will be found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * <p>This method runs in log(n) time for a "random access" list (which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * provides near-constant-time positional access).  If the specified list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * does not implement the {@link RandomAccess} interface and is large,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * this method will do an iterator-based binary search that performs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * O(n) link traversals and O(log n) element comparisons.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
   198
     * @param  <T> the class of the objects in the list
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * @param  list the list to be searched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @param  key the key to be searched for.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * @return the index of the search key, if it is contained in the list;
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   202
     *         otherwise, <code>(-(<i>insertion point</i>) - 1)</code>.  The
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     *         <i>insertion point</i> is defined as the point at which the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     *         key would be inserted into the list: the index of the first
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   205
     *         element greater than the key, or {@code list.size()} if all
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     *         elements in the list are less than the specified key.  Note
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     *         that this guarantees that the return value will be &gt;= 0 if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     *         and only if the key is found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @throws ClassCastException if the list contains elements that are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     *         <i>mutually comparable</i> (for example, strings and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     *         integers), or the search key is not mutually comparable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     *         with the elements of the list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    public static <T>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    int binarySearch(List<? extends Comparable<? super T>> list, T key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        if (list instanceof RandomAccess || list.size()<BINARYSEARCH_THRESHOLD)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            return Collections.indexedBinarySearch(list, key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            return Collections.iteratorBinarySearch(list, key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    private static <T>
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
   223
    int indexedBinarySearch(List<? extends Comparable<? super T>> list, T key) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        int low = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        int high = list.size()-1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        while (low <= high) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            int mid = (low + high) >>> 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            Comparable<? super T> midVal = list.get(mid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
            int cmp = midVal.compareTo(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            if (cmp < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
                low = mid + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
            else if (cmp > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
                high = mid - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
                return mid; // key found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        return -(low + 1);  // key not found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    private static <T>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    int iteratorBinarySearch(List<? extends Comparable<? super T>> list, T key)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        int low = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        int high = list.size()-1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        ListIterator<? extends Comparable<? super T>> i = list.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        while (low <= high) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
            int mid = (low + high) >>> 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            Comparable<? super T> midVal = get(i, mid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            int cmp = midVal.compareTo(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
            if (cmp < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
                low = mid + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
            else if (cmp > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
                high = mid - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
                return mid; // key found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        return -(low + 1);  // key not found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * Gets the ith element from the given list by repositioning the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * list listIterator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    private static <T> T get(ListIterator<? extends T> i, int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        T obj = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        int pos = i.nextIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        if (pos <= index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
            do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
                obj = i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
            } while (pos++ < index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
            do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                obj = i.previous();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
            } while (--pos > index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        return obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * Searches the specified list for the specified object using the binary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * search algorithm.  The list must be sorted into ascending order
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * according to the specified comparator (as by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * {@link #sort(List, Comparator) sort(List, Comparator)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * method), prior to making this call.  If it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * not sorted, the results are undefined.  If the list contains multiple
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * elements equal to the specified object, there is no guarantee which one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * will be found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * <p>This method runs in log(n) time for a "random access" list (which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * provides near-constant-time positional access).  If the specified list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * does not implement the {@link RandomAccess} interface and is large,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * this method will do an iterator-based binary search that performs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * O(n) link traversals and O(log n) element comparisons.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
   299
     * @param  <T> the class of the objects in the list
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * @param  list the list to be searched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * @param  key the key to be searched for.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * @param  c the comparator by which the list is ordered.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   303
     *         A {@code null} value indicates that the elements'
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     *         {@linkplain Comparable natural ordering} should be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * @return the index of the search key, if it is contained in the list;
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   306
     *         otherwise, <code>(-(<i>insertion point</i>) - 1)</code>.  The
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     *         <i>insertion point</i> is defined as the point at which the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     *         key would be inserted into the list: the index of the first
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   309
     *         element greater than the key, or {@code list.size()} if all
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     *         elements in the list are less than the specified key.  Note
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     *         that this guarantees that the return value will be &gt;= 0 if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     *         and only if the key is found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * @throws ClassCastException if the list contains elements that are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     *         <i>mutually comparable</i> using the specified comparator,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     *         or the search key is not mutually comparable with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     *         elements of the list using this comparator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     */
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   318
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    public static <T> int binarySearch(List<? extends T> list, T key, Comparator<? super T> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        if (c==null)
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   321
            return binarySearch((List<? extends Comparable<? super T>>) list, key);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        if (list instanceof RandomAccess || list.size()<BINARYSEARCH_THRESHOLD)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            return Collections.indexedBinarySearch(list, key, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
            return Collections.iteratorBinarySearch(list, key, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    private static <T> int indexedBinarySearch(List<? extends T> l, T key, Comparator<? super T> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        int low = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        int high = l.size()-1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        while (low <= high) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
            int mid = (low + high) >>> 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
            T midVal = l.get(mid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
            int cmp = c.compare(midVal, key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            if (cmp < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                low = mid + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
            else if (cmp > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
                high = mid - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
                return mid; // key found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        return -(low + 1);  // key not found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    private static <T> int iteratorBinarySearch(List<? extends T> l, T key, Comparator<? super T> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        int low = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        int high = l.size()-1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        ListIterator<? extends T> i = l.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        while (low <= high) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
            int mid = (low + high) >>> 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            T midVal = get(i, mid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
            int cmp = c.compare(midVal, key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            if (cmp < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
                low = mid + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            else if (cmp > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
                high = mid - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
                return mid; // key found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        return -(low + 1);  // key not found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * Reverses the order of the elements in the specified list.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * This method runs in linear time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * @param  list the list whose elements are to be reversed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * @throws UnsupportedOperationException if the specified list or
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   375
     *         its list-iterator does not support the {@code set} operation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     */
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 12448
diff changeset
   377
    @SuppressWarnings({"rawtypes", "unchecked"})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    public static void reverse(List<?> list) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        int size = list.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        if (size < REVERSE_THRESHOLD || list instanceof RandomAccess) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
            for (int i=0, mid=size>>1, j=size-1; i<mid; i++, j--)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
                swap(list, i, j);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        } else {
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   384
            // instead of using a raw type here, it's possible to capture
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   385
            // the wildcard but it will require a call to a supplementary
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   386
            // private method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
            ListIterator fwd = list.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
            ListIterator rev = list.listIterator(size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
            for (int i=0, mid=list.size()>>1; i<mid; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
                Object tmp = fwd.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
                fwd.set(rev.previous());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
                rev.set(tmp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * Randomly permutes the specified list using a default source of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * randomness.  All permutations occur with approximately equal
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
   400
     * likelihood.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     *
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
   402
     * <p>The hedge "approximately" is used in the foregoing description because
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * default source of randomness is only approximately an unbiased source
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * of independently chosen bits. If it were a perfect source of randomly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * chosen bits, then the algorithm would choose permutations with perfect
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
   406
     * uniformity.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     *
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
   408
     * <p>This implementation traverses the list backwards, from the last
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
   409
     * element up to the second, repeatedly swapping a randomly selected element
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
   410
     * into the "current position".  Elements are randomly selected from the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * portion of the list that runs from the first element to the current
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
   412
     * position, inclusive.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     *
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
   414
     * <p>This method runs in linear time.  If the specified list does not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * implement the {@link RandomAccess} interface and is large, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * implementation dumps the specified list into an array before shuffling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * it, and dumps the shuffled array back into the list.  This avoids the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * quadratic behavior that would result from shuffling a "sequential
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * access" list in place.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * @param  list the list to be shuffled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * @throws UnsupportedOperationException if the specified list or
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   423
     *         its list-iterator does not support the {@code set} operation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    public static void shuffle(List<?> list) {
5781
11a42d91eb56 6959259: Minor improvements to static Random field caching
martin
parents: 5506
diff changeset
   426
        Random rnd = r;
11a42d91eb56 6959259: Minor improvements to static Random field caching
martin
parents: 5506
diff changeset
   427
        if (rnd == null)
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
   428
            r = rnd = new Random(); // harmless race.
5781
11a42d91eb56 6959259: Minor improvements to static Random field caching
martin
parents: 5506
diff changeset
   429
        shuffle(list, rnd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    }
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
   431
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    private static Random r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * Randomly permute the specified list using the specified source of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * randomness.  All permutations occur with equal likelihood
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * assuming that the source of randomness is fair.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * This implementation traverses the list backwards, from the last element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * up to the second, repeatedly swapping a randomly selected element into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * the "current position".  Elements are randomly selected from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * portion of the list that runs from the first element to the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * position, inclusive.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     * This method runs in linear time.  If the specified list does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * implement the {@link RandomAccess} interface and is large, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * implementation dumps the specified list into an array before shuffling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * it, and dumps the shuffled array back into the list.  This avoids the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * quadratic behavior that would result from shuffling a "sequential
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * access" list in place.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * @param  list the list to be shuffled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * @param  rnd the source of randomness to use to shuffle the list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * @throws UnsupportedOperationException if the specified list or its
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   455
     *         list-iterator does not support the {@code set} operation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     */
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 12448
diff changeset
   457
    @SuppressWarnings({"rawtypes", "unchecked"})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    public static void shuffle(List<?> list, Random rnd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        int size = list.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        if (size < SHUFFLE_THRESHOLD || list instanceof RandomAccess) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
            for (int i=size; i>1; i--)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
                swap(list, i-1, rnd.nextInt(i));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        } else {
53107
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
   464
            Object[] arr = list.toArray();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
            // Shuffle array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
            for (int i=size; i>1; i--)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
                swap(arr, i-1, rnd.nextInt(i));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
            // Dump array back into list
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   471
            // instead of using a raw type here, it's possible to capture
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   472
            // the wildcard but it will require a call to a supplementary
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   473
            // private method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
            ListIterator it = list.listIterator();
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19855
diff changeset
   475
            for (Object e : arr) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
                it.next();
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19855
diff changeset
   477
                it.set(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * Swaps the elements at the specified positions in the specified list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     * (If the specified positions are equal, invoking this method leaves
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * the list unchanged.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * @param list The list in which to swap elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * @param i the index of one element to be swapped.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * @param j the index of the other element to be swapped.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   490
     * @throws IndexOutOfBoundsException if either {@code i} or {@code j}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     *         is out of range (i &lt; 0 || i &gt;= list.size()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     *         || j &lt; 0 || j &gt;= list.size()).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     */
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 12448
diff changeset
   495
    @SuppressWarnings({"rawtypes", "unchecked"})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
    public static void swap(List<?> list, int i, int j) {
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   497
        // instead of using a raw type here, it's possible to capture
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   498
        // the wildcard but it will require a call to a supplementary
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   499
        // private method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        final List l = list;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        l.set(i, l.set(j, l.get(i)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * Swaps the two specified elements in the specified array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
    private static void swap(Object[] arr, int i, int j) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        Object tmp = arr[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        arr[i] = arr[j];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
        arr[j] = tmp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * Replaces all of the elements of the specified list with the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * element. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * This method runs in linear time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
   519
     * @param  <T> the class of the objects in the list
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * @param  list the list to be filled with the specified element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * @param  obj The element with which to fill the specified list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * @throws UnsupportedOperationException if the specified list or its
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   523
     *         list-iterator does not support the {@code set} operation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
    public static <T> void fill(List<? super T> list, T obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        int size = list.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        if (size < FILL_THRESHOLD || list instanceof RandomAccess) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
            for (int i=0; i<size; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                list.set(i, obj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
            ListIterator<? super T> itr = list.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
            for (int i=0; i<size; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
                itr.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
                itr.set(obj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * Copies all of the elements from one list into another.  After the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * operation, the index of each copied element in the destination list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * will be identical to its index in the source list.  The destination
32994
4dcdbdb9b2c3 8138938: Clarify javadoc for java.util.Collections.copy()
igerasim
parents: 32108
diff changeset
   544
     * list's size must be greater than or equal to the source list's size.
4dcdbdb9b2c3 8138938: Clarify javadoc for java.util.Collections.copy()
igerasim
parents: 32108
diff changeset
   545
     * If it is greater, the remaining elements in the destination list are
4dcdbdb9b2c3 8138938: Clarify javadoc for java.util.Collections.copy()
igerasim
parents: 32108
diff changeset
   546
     * unaffected. <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * This method runs in linear time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
   550
     * @param  <T> the class of the objects in the lists
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * @param  dest The destination list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * @param  src The source list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * @throws IndexOutOfBoundsException if the destination list is too small
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     *         to contain the entire source List.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * @throws UnsupportedOperationException if the destination list's
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   556
     *         list-iterator does not support the {@code set} operation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    public static <T> void copy(List<? super T> dest, List<? extends T> src) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        int srcSize = src.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        if (srcSize > dest.size())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
            throw new IndexOutOfBoundsException("Source does not fit in dest");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        if (srcSize < COPY_THRESHOLD ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
            (src instanceof RandomAccess && dest instanceof RandomAccess)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
            for (int i=0; i<srcSize; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                dest.set(i, src.get(i));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
            ListIterator<? super T> di=dest.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
            ListIterator<? extends T> si=src.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
            for (int i=0; i<srcSize; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
                di.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
                di.set(si.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * Returns the minimum element of the given collection, according to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     * <i>natural ordering</i> of its elements.  All elements in the
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   580
     * collection must implement the {@code Comparable} interface.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * Furthermore, all elements in the collection must be <i>mutually
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   582
     * comparable</i> (that is, {@code e1.compareTo(e2)} must not throw a
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   583
     * {@code ClassCastException} for any elements {@code e1} and
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   584
     * {@code e2} in the collection).<p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     * This method iterates over the entire collection, hence it requires
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     * time proportional to the size of the collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
   589
     * @param  <T> the class of the objects in the collection
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * @param  coll the collection whose minimum element is to be determined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * @return the minimum element of the given collection, according
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     *         to the <i>natural ordering</i> of its elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     * @throws ClassCastException if the collection contains elements that are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     *         not <i>mutually comparable</i> (for example, strings and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     *         integers).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     * @throws NoSuchElementException if the collection is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     * @see Comparable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
    public static <T extends Object & Comparable<? super T>> T min(Collection<? extends T> coll) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
        Iterator<? extends T> i = coll.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        T candidate = i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
        while (i.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
            T next = i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
            if (next.compareTo(candidate) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
                candidate = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        return candidate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * Returns the minimum element of the given collection, according to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * order induced by the specified comparator.  All elements in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * collection must be <i>mutually comparable</i> by the specified
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   615
     * comparator (that is, {@code comp.compare(e1, e2)} must not throw a
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   616
     * {@code ClassCastException} for any elements {@code e1} and
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   617
     * {@code e2} in the collection).<p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     * This method iterates over the entire collection, hence it requires
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * time proportional to the size of the collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
   622
     * @param  <T> the class of the objects in the collection
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     * @param  coll the collection whose minimum element is to be determined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     * @param  comp the comparator with which to determine the minimum element.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   625
     *         A {@code null} value indicates that the elements' <i>natural
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     *         ordering</i> should be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     * @return the minimum element of the given collection, according
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     *         to the specified comparator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     * @throws ClassCastException if the collection contains elements that are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     *         not <i>mutually comparable</i> using the specified comparator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * @throws NoSuchElementException if the collection is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     * @see Comparable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     */
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 12448
diff changeset
   634
    @SuppressWarnings({"unchecked", "rawtypes"})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
    public static <T> T min(Collection<? extends T> coll, Comparator<? super T> comp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
        if (comp==null)
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   637
            return (T)min((Collection) coll);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
        Iterator<? extends T> i = coll.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
        T candidate = i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
        while (i.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
            T next = i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
            if (comp.compare(next, candidate) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
                candidate = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        return candidate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     * Returns the maximum element of the given collection, according to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
     * <i>natural ordering</i> of its elements.  All elements in the
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   653
     * collection must implement the {@code Comparable} interface.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
     * Furthermore, all elements in the collection must be <i>mutually
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   655
     * comparable</i> (that is, {@code e1.compareTo(e2)} must not throw a
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   656
     * {@code ClassCastException} for any elements {@code e1} and
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   657
     * {@code e2} in the collection).<p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     * This method iterates over the entire collection, hence it requires
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     * time proportional to the size of the collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
   662
     * @param  <T> the class of the objects in the collection
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     * @param  coll the collection whose maximum element is to be determined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     * @return the maximum element of the given collection, according
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     *         to the <i>natural ordering</i> of its elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     * @throws ClassCastException if the collection contains elements that are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     *         not <i>mutually comparable</i> (for example, strings and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     *         integers).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     * @throws NoSuchElementException if the collection is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     * @see Comparable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    public static <T extends Object & Comparable<? super T>> T max(Collection<? extends T> coll) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        Iterator<? extends T> i = coll.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
        T candidate = i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
        while (i.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
            T next = i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
            if (next.compareTo(candidate) > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
                candidate = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
        return candidate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * Returns the maximum element of the given collection, according to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * order induced by the specified comparator.  All elements in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * collection must be <i>mutually comparable</i> by the specified
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   688
     * comparator (that is, {@code comp.compare(e1, e2)} must not throw a
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   689
     * {@code ClassCastException} for any elements {@code e1} and
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   690
     * {@code e2} in the collection).<p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * This method iterates over the entire collection, hence it requires
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * time proportional to the size of the collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
   695
     * @param  <T> the class of the objects in the collection
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * @param  coll the collection whose maximum element is to be determined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     * @param  comp the comparator with which to determine the maximum element.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   698
     *         A {@code null} value indicates that the elements' <i>natural
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     *        ordering</i> should be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * @return the maximum element of the given collection, according
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     *         to the specified comparator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     * @throws ClassCastException if the collection contains elements that are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     *         not <i>mutually comparable</i> using the specified comparator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * @throws NoSuchElementException if the collection is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     * @see Comparable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     */
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 12448
diff changeset
   707
    @SuppressWarnings({"unchecked", "rawtypes"})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
    public static <T> T max(Collection<? extends T> coll, Comparator<? super T> comp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
        if (comp==null)
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
   710
            return (T)max((Collection) coll);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
        Iterator<? extends T> i = coll.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
        T candidate = i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
        while (i.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
            T next = i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
            if (comp.compare(next, candidate) > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
                candidate = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        return candidate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
     * Rotates the elements in the specified list by the specified distance.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   725
     * After calling this method, the element at index {@code i} will be
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   726
     * the element previously at index {@code (i - distance)} mod
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   727
     * {@code list.size()}, for all values of {@code i} between {@code 0}
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   728
     * and {@code list.size()-1}, inclusive.  (This method has no effect on
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     * the size of the list.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     *
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   731
     * <p>For example, suppose {@code list} comprises{@code  [t, a, n, k, s]}.
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   732
     * After invoking {@code Collections.rotate(list, 1)} (or
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   733
     * {@code Collections.rotate(list, -4)}), {@code list} will comprise
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   734
     * {@code [s, t, a, n, k]}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     * <p>Note that this method can usefully be applied to sublists to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     * move one or more elements within a list while preserving the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     * order of the remaining elements.  For example, the following idiom
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   739
     * moves the element at index {@code j} forward to position
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   740
     * {@code k} (which must be greater than or equal to {@code j}):
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     *     Collections.rotate(list.subList(j, k+1), -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
     * </pre>
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   744
     * To make this concrete, suppose {@code list} comprises
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   745
     * {@code [a, b, c, d, e]}.  To move the element at index {@code 1}
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   746
     * ({@code b}) forward two positions, perform the following invocation:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     *     Collections.rotate(l.subList(1, 4), -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * </pre>
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   750
     * The resulting list is {@code [a, c, d, b, e]}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     * <p>To move more than one element forward, increase the absolute value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     * of the rotation distance.  To move elements backward, use a positive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     * shift distance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     * <p>If the specified list is small or implements the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
     * RandomAccess} interface, this implementation exchanges the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     * element into the location it should go, and then repeatedly exchanges
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     * the displaced element into the location it should go until a displaced
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     * element is swapped into the first element.  If necessary, the process
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
     * is repeated on the second and successive elements, until the rotation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
     * is complete.  If the specified list is large and doesn't implement the
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   763
     * {@code RandomAccess} interface, this implementation breaks the
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   764
     * list into two sublist views around index {@code -distance mod size}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
     * Then the {@link #reverse(List)} method is invoked on each sublist view,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     * and finally it is invoked on the entire list.  For a more complete
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     * description of both algorithms, see Section 2.3 of Jon Bentley's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
     * <i>Programming Pearls</i> (Addison-Wesley, 1986).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     * @param list the list to be rotated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
     * @param distance the distance to rotate the list.  There are no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     *        constraints on this value; it may be zero, negative, or
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   773
     *        greater than {@code list.size()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
     * @throws UnsupportedOperationException if the specified list or
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   775
     *         its list-iterator does not support the {@code set} operation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
    public static void rotate(List<?> list, int distance) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        if (list instanceof RandomAccess || list.size() < ROTATE_THRESHOLD)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
            rotate1(list, distance);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
            rotate2(list, distance);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
    private static <T> void rotate1(List<T> list, int distance) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        int size = list.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        if (size == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
        distance = distance % size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
        if (distance < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
            distance += size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
        if (distance == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
        for (int cycleStart = 0, nMoved = 0; nMoved != size; cycleStart++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
            T displaced = list.get(cycleStart);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
            int i = cycleStart;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
            do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
                i += distance;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
                if (i >= size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
                    i -= size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
                displaced = list.set(i, displaced);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
                nMoved ++;
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
   804
            } while (i != cycleStart);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
    private static void rotate2(List<?> list, int distance) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
        int size = list.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
        if (size == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
        int mid =  -distance % size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
        if (mid < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
            mid += size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
        if (mid == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
        reverse(list.subList(0, mid));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
        reverse(list.subList(mid, size));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
        reverse(list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
     * Replaces all occurrences of one specified value in a list with another.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   825
     * More formally, replaces with {@code newVal} each element {@code e}
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   826
     * in {@code list} such that
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   827
     * {@code (oldVal==null ? e==null : oldVal.equals(e))}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
     * (This method has no effect on the size of the list.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
   830
     * @param  <T> the class of the objects in the list
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
     * @param list the list in which replacement is to occur.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
     * @param oldVal the old value to be replaced.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   833
     * @param newVal the new value with which {@code oldVal} is to be
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
     *        replaced.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   835
     * @return {@code true} if {@code list} contained one or more elements
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   836
     *         {@code e} such that
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   837
     *         {@code (oldVal==null ?  e==null : oldVal.equals(e))}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
     * @throws UnsupportedOperationException if the specified list or
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   839
     *         its list-iterator does not support the {@code set} operation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
     * @since  1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
    public static <T> boolean replaceAll(List<T> list, T oldVal, T newVal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
        boolean result = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
        int size = list.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
        if (size < REPLACEALL_THRESHOLD || list instanceof RandomAccess) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
            if (oldVal==null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
                for (int i=0; i<size; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                    if (list.get(i)==null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                        list.set(i, newVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
                        result = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
                for (int i=0; i<size; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
                    if (oldVal.equals(list.get(i))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
                        list.set(i, newVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
                        result = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
            ListIterator<T> itr=list.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
            if (oldVal==null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
                for (int i=0; i<size; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
                    if (itr.next()==null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
                        itr.set(newVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
                        result = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
                for (int i=0; i<size; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
                    if (oldVal.equals(itr.next())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
                        itr.set(newVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
                        result = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
     * Returns the starting position of the first occurrence of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
     * target list within the specified source list, or -1 if there is no
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   885
     * such occurrence.  More formally, returns the lowest index {@code i}
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17168
diff changeset
   886
     * such that {@code source.subList(i, i+target.size()).equals(target)},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     * or -1 if there is no such index.  (Returns -1 if
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17168
diff changeset
   888
     * {@code target.size() > source.size()})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
     * <p>This implementation uses the "brute force" technique of scanning
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
     * over the source list, looking for a match with the target at each
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
     * location in turn.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
     * @param source the list in which to search for the first occurrence
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   895
     *        of {@code target}.
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   896
     * @param target the list to search for as a subList of {@code source}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
     * @return the starting position of the first occurrence of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     *         target list within the specified source list, or -1 if there
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
     *         is no such occurrence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
     * @since  1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
    public static int indexOfSubList(List<?> source, List<?> target) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
        int sourceSize = source.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
        int targetSize = target.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
        int maxCandidate = sourceSize - targetSize;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
        if (sourceSize < INDEXOFSUBLIST_THRESHOLD ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
            (source instanceof RandomAccess&&target instanceof RandomAccess)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
        nextCand:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
            for (int candidate = 0; candidate <= maxCandidate; candidate++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
                for (int i=0, j=candidate; i<targetSize; i++, j++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
                    if (!eq(target.get(i), source.get(j)))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
                        continue nextCand;  // Element mismatch, try next cand
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
                return candidate;  // All elements of candidate matched target
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
        } else {  // Iterator version of above algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
            ListIterator<?> si = source.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
        nextCand:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
            for (int candidate = 0; candidate <= maxCandidate; candidate++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
                ListIterator<?> ti = target.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
                for (int i=0; i<targetSize; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
                    if (!eq(ti.next(), si.next())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
                        // Back up source iterator to next candidate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
                        for (int j=0; j<i; j++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
                            si.previous();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
                        continue nextCand;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
                return candidate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
        return -1;  // No candidate matched the target
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
     * Returns the starting position of the last occurrence of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
     * target list within the specified source list, or -1 if there is no such
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   938
     * occurrence.  More formally, returns the highest index {@code i}
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17168
diff changeset
   939
     * such that {@code source.subList(i, i+target.size()).equals(target)},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
     * or -1 if there is no such index.  (Returns -1 if
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17168
diff changeset
   941
     * {@code target.size() > source.size()})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
     * <p>This implementation uses the "brute force" technique of iterating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
     * over the source list, looking for a match with the target at each
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
     * location in turn.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
     * @param source the list in which to search for the last occurrence
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   948
     *        of {@code target}.
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
   949
     * @param target the list to search for as a subList of {@code source}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
     * @return the starting position of the last occurrence of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
     *         target list within the specified source list, or -1 if there
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
     *         is no such occurrence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
     * @since  1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
    public static int lastIndexOfSubList(List<?> source, List<?> target) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
        int sourceSize = source.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
        int targetSize = target.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
        int maxCandidate = sourceSize - targetSize;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
        if (sourceSize < INDEXOFSUBLIST_THRESHOLD ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
            source instanceof RandomAccess) {   // Index access version
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
        nextCand:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
            for (int candidate = maxCandidate; candidate >= 0; candidate--) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
                for (int i=0, j=candidate; i<targetSize; i++, j++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
                    if (!eq(target.get(i), source.get(j)))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
                        continue nextCand;  // Element mismatch, try next cand
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
                return candidate;  // All elements of candidate matched target
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        } else {  // Iterator version of above algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
            if (maxCandidate < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
            ListIterator<?> si = source.listIterator(maxCandidate);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
        nextCand:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
            for (int candidate = maxCandidate; candidate >= 0; candidate--) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
                ListIterator<?> ti = target.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
                for (int i=0; i<targetSize; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
                    if (!eq(ti.next(), si.next())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
                        if (candidate != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
                            // Back up source iterator to next candidate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
                            for (int j=0; j<=i+1; j++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
                                si.previous();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
                        continue nextCand;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
                return candidate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
        return -1;  // No candidate matched the target
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
    // Unmodifiable Wrappers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
    /**
48059
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
   996
     * Returns an <a href="Collection.html#unmodview">unmodifiable view</a> of the
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
   997
     * specified collection. Query operations on the returned collection "read through"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
     * to the specified collection, and attempts to modify the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
     * collection, whether direct or via its iterator, result in an
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  1000
     * {@code UnsupportedOperationException}.<p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
     * The returned collection does <i>not</i> pass the hashCode and equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
     * operations through to the backing collection, but relies on
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  1004
     * {@code Object}'s {@code equals} and {@code hashCode} methods.  This
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
     * is necessary to preserve the contracts of these operations in the case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
     * that the backing collection is a set or a list.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
     * The returned collection will be serializable if the specified collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
     * is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  1011
     * @param  <T> the class of the objects in the collection
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
     * @param  c the collection for which an unmodifiable view is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
     *         returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
     * @return an unmodifiable view of the specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
    public static <T> Collection<T> unmodifiableCollection(Collection<? extends T> c) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1017
        return new UnmodifiableCollection<>(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
    static class UnmodifiableCollection<E> implements Collection<E>, Serializable {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1024
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
        private static final long serialVersionUID = 1820017752578914078L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  1027
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
        final Collection<? extends E> c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
        UnmodifiableCollection(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
            if (c==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
                throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
            this.c = c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
50697
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  1036
        public int size()                          {return c.size();}
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  1037
        public boolean isEmpty()                   {return c.isEmpty();}
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  1038
        public boolean contains(Object o)          {return c.contains(o);}
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  1039
        public Object[] toArray()                  {return c.toArray();}
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  1040
        public <T> T[] toArray(T[] a)              {return c.toArray(a);}
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  1041
        public <T> T[] toArray(IntFunction<T[]> f) {return c.toArray(f);}
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  1042
        public String toString()                   {return c.toString();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
        public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
            return new Iterator<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
                private final Iterator<? extends E> i = c.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
                public boolean hasNext() {return i.hasNext();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
                public E next()          {return i.next();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
                public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
                    throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
                }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1053
                @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1054
                public void forEachRemaining(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1055
                    // Use backing collection version
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1056
                    i.forEachRemaining(action);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1057
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
        public boolean add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
        public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
        public boolean containsAll(Collection<?> coll) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
            return c.containsAll(coll);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
        public boolean addAll(Collection<? extends E> coll) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
        public boolean removeAll(Collection<?> coll) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
        public boolean retainAll(Collection<?> coll) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
        public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
        }
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1083
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1084
        // Override default methods in Collection
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1085
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1086
        public void forEach(Consumer<? super E> action) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1087
            c.forEach(action);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1088
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1089
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1090
        public boolean removeIf(Predicate<? super E> filter) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1091
            throw new UnsupportedOperationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1092
        }
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  1093
        @SuppressWarnings("unchecked")
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1094
        @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1095
        public Spliterator<E> spliterator() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1096
            return (Spliterator<E>)c.spliterator();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1097
        }
19603
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  1098
        @SuppressWarnings("unchecked")
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  1099
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  1100
        public Stream<E> stream() {
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  1101
            return (Stream<E>)c.stream();
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  1102
        }
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  1103
        @SuppressWarnings("unchecked")
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  1104
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  1105
        public Stream<E> parallelStream() {
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  1106
            return (Stream<E>)c.parallelStream();
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  1107
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
    /**
48059
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1111
     * Returns an <a href="Collection.html#unmodview">unmodifiable view</a> of the
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1112
     * specified set. Query operations on the returned set "read through" to the specified
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
     * set, and attempts to modify the returned set, whether direct or via its
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  1114
     * iterator, result in an {@code UnsupportedOperationException}.<p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
     * The returned set will be serializable if the specified set
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
     * is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  1119
     * @param  <T> the class of the objects in the set
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
     * @param  s the set for which an unmodifiable view is to be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
     * @return an unmodifiable view of the specified set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
    public static <T> Set<T> unmodifiableSet(Set<? extends T> s) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1124
        return new UnmodifiableSet<>(s);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
    static class UnmodifiableSet<E> extends UnmodifiableCollection<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
                                 implements Set<E>, Serializable {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1132
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
        private static final long serialVersionUID = -9215047833775013803L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
        UnmodifiableSet(Set<? extends E> s)     {super(s);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
        public boolean equals(Object o) {return o == this || c.equals(o);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
        public int hashCode()           {return c.hashCode();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
    /**
48059
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1141
     * Returns an <a href="Collection.html#unmodview">unmodifiable view</a> of the
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1142
     * specified sorted set. Query operations on the returned sorted set "read
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
     * through" to the specified sorted set.  Attempts to modify the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
     * sorted set, whether direct, via its iterator, or via its
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  1145
     * {@code subSet}, {@code headSet}, or {@code tailSet} views, result in
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  1146
     * an {@code UnsupportedOperationException}.<p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
     * The returned sorted set will be serializable if the specified sorted set
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
     * is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  1151
     * @param  <T> the class of the objects in the set
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
     * @param s the sorted set for which an unmodifiable view is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
     *        returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
     * @return an unmodifiable view of the specified sorted set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
    public static <T> SortedSet<T> unmodifiableSortedSet(SortedSet<T> s) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1157
        return new UnmodifiableSortedSet<>(s);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
    static class UnmodifiableSortedSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
                             extends UnmodifiableSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
                             implements SortedSet<E>, Serializable {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1166
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
        private static final long serialVersionUID = -4929149591599911165L;
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  1168
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
        private final SortedSet<E> ss;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
        UnmodifiableSortedSet(SortedSet<E> s) {super(s); ss = s;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
        public Comparator<? super E> comparator() {return ss.comparator();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
        public SortedSet<E> subSet(E fromElement, E toElement) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1176
            return new UnmodifiableSortedSet<>(ss.subSet(fromElement,toElement));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
        public SortedSet<E> headSet(E toElement) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1179
            return new UnmodifiableSortedSet<>(ss.headSet(toElement));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
        public SortedSet<E> tailSet(E fromElement) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1182
            return new UnmodifiableSortedSet<>(ss.tailSet(fromElement));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
        public E first()                   {return ss.first();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
        public E last()                    {return ss.last();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
    /**
48059
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1190
     * Returns an <a href="Collection.html#unmodview">unmodifiable view</a> of the
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1191
     * specified navigable set. Query operations on the returned navigable set "read
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1192
     * through" to the specified navigable set.  Attempts to modify the returned
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1193
     * navigable set, whether direct, via its iterator, or via its
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1194
     * {@code subSet}, {@code headSet}, or {@code tailSet} views, result in
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1195
     * an {@code UnsupportedOperationException}.<p>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1196
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1197
     * The returned navigable set will be serializable if the specified
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1198
     * navigable set is serializable.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1199
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  1200
     * @param  <T> the class of the objects in the set
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1201
     * @param s the navigable set for which an unmodifiable view is to be
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1202
     *        returned
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1203
     * @return an unmodifiable view of the specified navigable set
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1204
     * @since 1.8
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1205
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1206
    public static <T> NavigableSet<T> unmodifiableNavigableSet(NavigableSet<T> s) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1207
        return new UnmodifiableNavigableSet<>(s);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1208
    }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1209
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1210
    /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1211
     * Wraps a navigable set and disables all of the mutative operations.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1212
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1213
     * @param <E> type of elements
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1214
     * @serial include
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1215
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1216
    static class UnmodifiableNavigableSet<E>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1217
                             extends UnmodifiableSortedSet<E>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1218
                             implements NavigableSet<E>, Serializable {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1219
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1220
        @java.io.Serial
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1221
        private static final long serialVersionUID = -6027448201786391929L;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1222
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1223
        /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1224
         * A singleton empty unmodifiable navigable set used for
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1225
         * {@link #emptyNavigableSet()}.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1226
         *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1227
         * @param <E> type of elements, if there were any, and bounds
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1228
         */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1229
        private static class EmptyNavigableSet<E> extends UnmodifiableNavigableSet<E>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1230
            implements Serializable {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1231
            @java.io.Serial
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1232
            private static final long serialVersionUID = -6291252904449939134L;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1233
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1234
            public EmptyNavigableSet() {
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19855
diff changeset
  1235
                super(new TreeSet<>());
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1236
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1237
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1238
            @java.io.Serial
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1239
            private Object readResolve()        { return EMPTY_NAVIGABLE_SET; }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1240
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1241
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1242
        @SuppressWarnings("rawtypes")
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1243
        private static final NavigableSet<?> EMPTY_NAVIGABLE_SET =
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1244
                new EmptyNavigableSet<>();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1245
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1246
        /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1247
         * The instance we are protecting.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1248
         */
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  1249
        @SuppressWarnings("serial") // Conditionally serializable
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1250
        private final NavigableSet<E> ns;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1251
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1252
        UnmodifiableNavigableSet(NavigableSet<E> s)         {super(s); ns = s;}
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1253
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1254
        public E lower(E e)                             { return ns.lower(e); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1255
        public E floor(E e)                             { return ns.floor(e); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1256
        public E ceiling(E e)                         { return ns.ceiling(e); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1257
        public E higher(E e)                           { return ns.higher(e); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1258
        public E pollFirst()     { throw new UnsupportedOperationException(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1259
        public E pollLast()      { throw new UnsupportedOperationException(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1260
        public NavigableSet<E> descendingSet()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1261
                 { return new UnmodifiableNavigableSet<>(ns.descendingSet()); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1262
        public Iterator<E> descendingIterator()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1263
                                         { return descendingSet().iterator(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1264
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1265
        public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1266
            return new UnmodifiableNavigableSet<>(
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1267
                ns.subSet(fromElement, fromInclusive, toElement, toInclusive));
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1268
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1269
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1270
        public NavigableSet<E> headSet(E toElement, boolean inclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1271
            return new UnmodifiableNavigableSet<>(
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1272
                ns.headSet(toElement, inclusive));
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1273
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1274
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1275
        public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1276
            return new UnmodifiableNavigableSet<>(
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1277
                ns.tailSet(fromElement, inclusive));
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1278
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1279
    }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1280
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1281
    /**
48059
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1282
     * Returns an <a href="Collection.html#unmodview">unmodifiable view</a> of the
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1283
     * specified list. Query operations on the returned list "read through" to the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
     * specified list, and attempts to modify the returned list, whether
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
     * direct or via its iterator, result in an
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  1286
     * {@code UnsupportedOperationException}.<p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
     * The returned list will be serializable if the specified list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
     * is serializable. Similarly, the returned list will implement
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
     * {@link RandomAccess} if the specified list does.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  1292
     * @param  <T> the class of the objects in the list
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
     * @param  list the list for which an unmodifiable view is to be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
     * @return an unmodifiable view of the specified list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
    public static <T> List<T> unmodifiableList(List<? extends T> list) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
        return (list instanceof RandomAccess ?
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1298
                new UnmodifiableRandomAccessList<>(list) :
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1299
                new UnmodifiableList<>(list));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
    static class UnmodifiableList<E> extends UnmodifiableCollection<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
                                  implements List<E> {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1307
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
        private static final long serialVersionUID = -283967356065247728L;
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1309
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  1310
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
        final List<? extends E> list;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
        UnmodifiableList(List<? extends E> list) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
            super(list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
            this.list = list;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
        public boolean equals(Object o) {return o == this || list.equals(o);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
        public int hashCode()           {return list.hashCode();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
        public E get(int index) {return list.get(index);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
        public E set(int index, E element) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
        public void add(int index, E element) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
        public E remove(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
        public int indexOf(Object o)            {return list.indexOf(o);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
        public int lastIndexOf(Object o)        {return list.lastIndexOf(o);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
        public boolean addAll(int index, Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
        }
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1336
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1337
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1338
        public void replaceAll(UnaryOperator<E> operator) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1339
            throw new UnsupportedOperationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1340
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1341
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1342
        public void sort(Comparator<? super E> c) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1343
            throw new UnsupportedOperationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1344
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  1345
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
        public ListIterator<E> listIterator()   {return listIterator(0);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
        public ListIterator<E> listIterator(final int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
            return new ListIterator<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
                private final ListIterator<? extends E> i
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
                    = list.listIterator(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
                public boolean hasNext()     {return i.hasNext();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
                public E next()              {return i.next();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
                public boolean hasPrevious() {return i.hasPrevious();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
                public E previous()          {return i.previous();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
                public int nextIndex()       {return i.nextIndex();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
                public int previousIndex()   {return i.previousIndex();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
                public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
                    throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
                public void set(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
                    throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
                public void add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
                    throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
                }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1369
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1370
                @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1371
                public void forEachRemaining(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1372
                    i.forEachRemaining(action);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1373
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
        public List<E> subList(int fromIndex, int toIndex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1378
            return new UnmodifiableList<>(list.subList(fromIndex, toIndex));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
         * UnmodifiableRandomAccessList instances are serialized as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
         * UnmodifiableList instances to allow them to be deserialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
         * in pre-1.4 JREs (which do not have UnmodifiableRandomAccessList).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
         * This method inverts the transformation.  As a beneficial
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
         * side-effect, it also grafts the RandomAccess marker onto
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
         * UnmodifiableList instances that were serialized in pre-1.4 JREs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
         * Note: Unfortunately, UnmodifiableRandomAccessList instances
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
         * serialized in 1.4.1 and deserialized in 1.4 will become
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
         * UnmodifiableList instances, as this method was missing in 1.4.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
         */
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1393
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
        private Object readResolve() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
            return (list instanceof RandomAccess
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1396
                    ? new UnmodifiableRandomAccessList<>(list)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
                    : this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
    static class UnmodifiableRandomAccessList<E> extends UnmodifiableList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
                                              implements RandomAccess
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
        UnmodifiableRandomAccessList(List<? extends E> list) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
            super(list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
        public List<E> subList(int fromIndex, int toIndex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1412
            return new UnmodifiableRandomAccessList<>(
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
                list.subList(fromIndex, toIndex));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1416
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
        private static final long serialVersionUID = -2542308836966382001L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
         * Allows instances to be deserialized in pre-1.4 JREs (which do
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
         * not have UnmodifiableRandomAccessList).  UnmodifiableList has
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
         * a readResolve method that inverts this transformation upon
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
         * deserialization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
         */
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1425
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
        private Object writeReplace() {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1427
            return new UnmodifiableList<>(list);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
    /**
48059
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1432
     * Returns an <a href="Collection.html#unmodview">unmodifiable view</a> of the
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1433
     * specified map. Query operations on the returned map "read through"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
     * to the specified map, and attempts to modify the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
     * map, whether direct or via its collection views, result in an
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  1436
     * {@code UnsupportedOperationException}.<p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
     * The returned map will be serializable if the specified map
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
     * is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  1441
     * @param <K> the class of the map keys
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  1442
     * @param <V> the class of the map values
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
     * @param  m the map for which an unmodifiable view is to be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
     * @return an unmodifiable view of the specified map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
    public static <K,V> Map<K,V> unmodifiableMap(Map<? extends K, ? extends V> m) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1447
        return new UnmodifiableMap<>(m);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
    private static class UnmodifiableMap<K,V> implements Map<K,V>, Serializable {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1454
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
        private static final long serialVersionUID = -1034234728574286014L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  1457
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
        private final Map<? extends K, ? extends V> m;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
        UnmodifiableMap(Map<? extends K, ? extends V> m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
            if (m==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
                throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
            this.m = m;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
        public int size()                        {return m.size();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
        public boolean isEmpty()                 {return m.isEmpty();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
        public boolean containsKey(Object key)   {return m.containsKey(key);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
        public boolean containsValue(Object val) {return m.containsValue(val);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
        public V get(Object key)                 {return m.get(key);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
        public V put(K key, V value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
        public V remove(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
        public void putAll(Map<? extends K, ? extends V> m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
        public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
            throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
23746
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22285
diff changeset
  1485
        private transient Set<K> keySet;
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22285
diff changeset
  1486
        private transient Set<Map.Entry<K,V>> entrySet;
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22285
diff changeset
  1487
        private transient Collection<V> values;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
        public Set<K> keySet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
            if (keySet==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
                keySet = unmodifiableSet(m.keySet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
            return keySet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
        public Set<Map.Entry<K,V>> entrySet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
            if (entrySet==null)
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1497
                entrySet = new UnmodifiableEntrySet<>(m.entrySet());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
            return entrySet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
        public Collection<V> values() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
            if (values==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
                values = unmodifiableCollection(m.values());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
            return values;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
        public boolean equals(Object o) {return o == this || m.equals(o);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
        public int hashCode()           {return m.hashCode();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
        public String toString()        {return m.toString();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1511
        // Override default methods in Map
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1512
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1513
        @SuppressWarnings("unchecked")
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1514
        public V getOrDefault(Object k, V defaultValue) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1515
            // Safe cast as we don't change the value
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1516
            return ((Map<K, V>)m).getOrDefault(k, defaultValue);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1517
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1518
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1519
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1520
        public void forEach(BiConsumer<? super K, ? super V> action) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1521
            m.forEach(action);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1522
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1523
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1524
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1525
        public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1526
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1527
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1528
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1529
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1530
        public V putIfAbsent(K key, V value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1531
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1532
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1533
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1534
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1535
        public boolean remove(Object key, Object value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1536
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1537
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1538
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1539
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1540
        public boolean replace(K key, V oldValue, V newValue) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1541
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1542
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1543
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1544
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1545
        public V replace(K key, V value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1546
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1547
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1548
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1549
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1550
        public V computeIfAbsent(K key, Function<? super K, ? extends V> mappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1551
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1552
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1553
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1554
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1555
        public V computeIfPresent(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1556
                BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1557
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1558
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1559
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1560
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1561
        public V compute(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1562
                BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1563
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1564
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1565
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1566
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1567
        public V merge(K key, V value,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1568
                BiFunction<? super V, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1569
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1570
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1571
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
         * We need this class in addition to UnmodifiableSet as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
         * Map.Entries themselves permit modification of the backing Map
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
         * via their setValue operation.  This class is subtle: there are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
         * many possible attacks that must be thwarted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
         * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
        static class UnmodifiableEntrySet<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
            extends UnmodifiableSet<Map.Entry<K,V>> {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1582
            @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
            private static final long serialVersionUID = 7854390611657943733L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 12448
diff changeset
  1585
            @SuppressWarnings({"unchecked", "rawtypes"})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
            UnmodifiableEntrySet(Set<? extends Map.Entry<? extends K, ? extends V>> s) {
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
  1587
                // Need to cast to raw in order to work around a limitation in the type system
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
                super((Set)s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
            }
18794
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1590
50775
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  1591
            static <K, V> Consumer<Map.Entry<? extends K, ? extends V>> entryConsumer(
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  1592
                    Consumer<? super Entry<K, V>> action) {
18794
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1593
                return e -> action.accept(new UnmodifiableEntry<>(e));
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1594
            }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1595
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1596
            public void forEach(Consumer<? super Entry<K, V>> action) {
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1597
                Objects.requireNonNull(action);
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1598
                c.forEach(entryConsumer(action));
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1599
            }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1600
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1601
            static final class UnmodifiableEntrySetSpliterator<K, V>
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1602
                    implements Spliterator<Entry<K,V>> {
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1603
                final Spliterator<Map.Entry<K, V>> s;
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1604
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1605
                UnmodifiableEntrySetSpliterator(Spliterator<Entry<K, V>> s) {
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1606
                    this.s = s;
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1607
                }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1608
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1609
                @Override
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1610
                public boolean tryAdvance(Consumer<? super Entry<K, V>> action) {
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1611
                    Objects.requireNonNull(action);
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1612
                    return s.tryAdvance(entryConsumer(action));
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1613
                }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1614
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1615
                @Override
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1616
                public void forEachRemaining(Consumer<? super Entry<K, V>> action) {
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1617
                    Objects.requireNonNull(action);
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1618
                    s.forEachRemaining(entryConsumer(action));
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1619
                }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1620
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1621
                @Override
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1622
                public Spliterator<Entry<K, V>> trySplit() {
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1623
                    Spliterator<Entry<K, V>> split = s.trySplit();
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1624
                    return split == null
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1625
                           ? null
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1626
                           : new UnmodifiableEntrySetSpliterator<>(split);
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1627
                }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1628
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1629
                @Override
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1630
                public long estimateSize() {
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1631
                    return s.estimateSize();
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1632
                }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1633
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1634
                @Override
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1635
                public long getExactSizeIfKnown() {
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1636
                    return s.getExactSizeIfKnown();
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1637
                }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1638
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1639
                @Override
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1640
                public int characteristics() {
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1641
                    return s.characteristics();
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1642
                }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1643
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1644
                @Override
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1645
                public boolean hasCharacteristics(int characteristics) {
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1646
                    return s.hasCharacteristics(characteristics);
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1647
                }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1648
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1649
                @Override
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1650
                public Comparator<? super Entry<K, V>> getComparator() {
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1651
                    return s.getComparator();
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1652
                }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1653
            }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1654
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1655
            @SuppressWarnings("unchecked")
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1656
            public Spliterator<Entry<K,V>> spliterator() {
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1657
                return new UnmodifiableEntrySetSpliterator<>(
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1658
                        (Spliterator<Map.Entry<K, V>>) c.spliterator());
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1659
            }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1660
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1661
            @Override
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1662
            public Stream<Entry<K,V>> stream() {
18822
4b6be7c19547 8019395: Consolidate StreamSupport.{stream,parallelStream} into a single method
psandoz
parents: 18818
diff changeset
  1663
                return StreamSupport.stream(spliterator(), false);
18794
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1664
            }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1665
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1666
            @Override
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1667
            public Stream<Entry<K,V>> parallelStream() {
18822
4b6be7c19547 8019395: Consolidate StreamSupport.{stream,parallelStream} into a single method
psandoz
parents: 18818
diff changeset
  1668
                return StreamSupport.stream(spliterator(), true);
18794
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1669
            }
17d9c2ec5e47 8017447: Unmodifiable map entry becomes modifiable if taken from a stream of map entries
psandoz
parents: 18571
diff changeset
  1670
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
            public Iterator<Map.Entry<K,V>> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
                return new Iterator<Map.Entry<K,V>>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
                    private final Iterator<? extends Map.Entry<? extends K, ? extends V>> i = c.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
                    public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
                        return i.hasNext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
                    public Map.Entry<K,V> next() {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1679
                        return new UnmodifiableEntry<>(i.next());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
                    public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
                        throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
                    }
50775
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  1684
                    public void forEachRemaining(Consumer<? super Map.Entry<K, V>> action) {
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  1685
                        i.forEachRemaining(entryConsumer(action));
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  1686
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
                };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
  1690
            @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
            public Object[] toArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
                Object[] a = c.toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
                for (int i=0; i<a.length; i++)
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
  1694
                    a[i] = new UnmodifiableEntry<>((Map.Entry<? extends K, ? extends V>)a[i]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
                return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
  1698
            @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
            public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
                // We don't pass a to c.toArray, to avoid window of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1701
                // vulnerability wherein an unscrupulous multithreaded client
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
                // could get his hands on raw (unwrapped) Entries from c.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1703
                Object[] arr = c.toArray(a.length==0 ? a : Arrays.copyOf(a, 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1704
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1705
                for (int i=0; i<arr.length; i++)
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
  1706
                    arr[i] = new UnmodifiableEntry<>((Map.Entry<? extends K, ? extends V>)arr[i]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
                if (arr.length > a.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
                    return (T[])arr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
                System.arraycopy(arr, 0, a, 0, arr.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
                if (a.length > arr.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
                    a[arr.length] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
                return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
            /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
             * This method is overridden to protect the backing set against
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
             * an object with a nefarious equals function that senses
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
             * that the equality-candidate is Map.Entry and calls its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
             * setValue method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
            public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
                if (!(o instanceof Map.Entry))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
                return c.contains(
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1727
                    new UnmodifiableEntry<>((Map.Entry<?,?>) o));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
            /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
             * The next two methods are overridden to protect against
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
             * an unscrupulous List whose contains(Object o) method senses
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
             * when o is a Map.Entry, and calls o.setValue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
            public boolean containsAll(Collection<?> coll) {
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 7816
diff changeset
  1736
                for (Object e : coll) {
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 7816
diff changeset
  1737
                    if (!contains(e)) // Invokes safe contains() above
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
                        return false;
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 7816
diff changeset
  1739
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
            public boolean equals(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
                if (o == this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
                if (!(o instanceof Set))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
                    return false;
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
  1748
                Set<?> s = (Set<?>) o;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
                if (s.size() != c.size())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
                return containsAll(s); // Invokes safe containsAll() above
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
            /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
             * This "wrapper class" serves two purposes: it prevents
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
             * the client from modifying the backing Map, by short-circuiting
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
             * the setValue method, and it protects the backing Map against
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
             * an ill-behaved Map.Entry that attempts to modify another
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
             * Map Entry when asked to perform an equality check.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
            private static class UnmodifiableEntry<K,V> implements Map.Entry<K,V> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
                private Map.Entry<? extends K, ? extends V> e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1764
                UnmodifiableEntry(Map.Entry<? extends K, ? extends V> e)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1765
                        {this.e = Objects.requireNonNull(e);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  1767
                public K getKey()        {return e.getKey();}
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  1768
                public V getValue()      {return e.getValue();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
                public V setValue(V value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
                    throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
                }
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  1772
                public int hashCode()    {return e.hashCode();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
                public boolean equals(Object o) {
11987
a6dde4427e9d 7144488: Infinite recursion for some equals tests in Collections
coffeys
parents: 10896
diff changeset
  1774
                    if (this == o)
a6dde4427e9d 7144488: Infinite recursion for some equals tests in Collections
coffeys
parents: 10896
diff changeset
  1775
                        return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
                    if (!(o instanceof Map.Entry))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
                        return false;
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 11987
diff changeset
  1778
                    Map.Entry<?,?> t = (Map.Entry<?,?>)o;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
                    return eq(e.getKey(),   t.getKey()) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
                           eq(e.getValue(), t.getValue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1781
                }
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  1782
                public String toString() {return e.toString();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
    /**
48059
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1788
     * Returns an <a href="Collection.html#unmodview">unmodifiable view</a> of the
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1789
     * specified sorted map. Query operations on the returned sorted map "read through"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
     * to the specified sorted map.  Attempts to modify the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
     * sorted map, whether direct, via its collection views, or via its
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  1792
     * {@code subMap}, {@code headMap}, or {@code tailMap} views, result in
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  1793
     * an {@code UnsupportedOperationException}.<p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
     * The returned sorted map will be serializable if the specified sorted map
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
     * is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  1798
     * @param <K> the class of the map keys
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  1799
     * @param <V> the class of the map values
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
     * @param m the sorted map for which an unmodifiable view is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
     *        returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
     * @return an unmodifiable view of the specified sorted map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
    public static <K,V> SortedMap<K,V> unmodifiableSortedMap(SortedMap<K, ? extends V> m) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  1805
        return new UnmodifiableSortedMap<>(m);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
    static class UnmodifiableSortedMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
          extends UnmodifiableMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
          implements SortedMap<K,V>, Serializable {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1814
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
        private static final long serialVersionUID = -8806743815996713206L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  1817
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
        private final SortedMap<K, ? extends V> sm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1820
        UnmodifiableSortedMap(SortedMap<K, ? extends V> m) {super(m); sm = m; }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1821
        public Comparator<? super K> comparator()   { return sm.comparator(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1822
        public SortedMap<K,V> subMap(K fromKey, K toKey)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1823
             { return new UnmodifiableSortedMap<>(sm.subMap(fromKey, toKey)); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1824
        public SortedMap<K,V> headMap(K toKey)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1825
                     { return new UnmodifiableSortedMap<>(sm.headMap(toKey)); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1826
        public SortedMap<K,V> tailMap(K fromKey)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1827
                   { return new UnmodifiableSortedMap<>(sm.tailMap(fromKey)); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1828
        public K firstKey()                           { return sm.firstKey(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1829
        public K lastKey()                             { return sm.lastKey(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1830
    }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1831
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1832
    /**
48059
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1833
     * Returns an <a href="Collection.html#unmodview">unmodifiable view</a> of the
6ee80cd217e0 8177290: add copy factory methods for unmodifiable List, Set, Map
smarks
parents: 47216
diff changeset
  1834
     * specified navigable map. Query operations on the returned navigable map "read
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1835
     * through" to the specified navigable map.  Attempts to modify the returned
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1836
     * navigable map, whether direct, via its collection views, or via its
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1837
     * {@code subMap}, {@code headMap}, or {@code tailMap} views, result in
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1838
     * an {@code UnsupportedOperationException}.<p>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1839
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1840
     * The returned navigable map will be serializable if the specified
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1841
     * navigable map is serializable.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1842
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  1843
     * @param <K> the class of the map keys
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  1844
     * @param <V> the class of the map values
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1845
     * @param m the navigable map for which an unmodifiable view is to be
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1846
     *        returned
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1847
     * @return an unmodifiable view of the specified navigable map
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1848
     * @since 1.8
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1849
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1850
    public static <K,V> NavigableMap<K,V> unmodifiableNavigableMap(NavigableMap<K, ? extends V> m) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1851
        return new UnmodifiableNavigableMap<>(m);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1854
    /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1855
     * @serial include
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1856
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1857
    static class UnmodifiableNavigableMap<K,V>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1858
          extends UnmodifiableSortedMap<K,V>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1859
          implements NavigableMap<K,V>, Serializable {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1860
        @java.io.Serial
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1861
        private static final long serialVersionUID = -4858195264774772197L;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1862
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1863
        /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1864
         * A class for the {@link EMPTY_NAVIGABLE_MAP} which needs readResolve
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1865
         * to preserve singleton property.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1866
         *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1867
         * @param <K> type of keys, if there were any, and of bounds
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1868
         * @param <V> type of values, if there were any
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1869
         */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1870
        private static class EmptyNavigableMap<K,V> extends UnmodifiableNavigableMap<K,V>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1871
            implements Serializable {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1872
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1873
            @java.io.Serial
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1874
            private static final long serialVersionUID = -2239321462712562324L;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1875
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 19855
diff changeset
  1876
            EmptyNavigableMap()                       { super(new TreeMap<>()); }
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1877
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1878
            @Override
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1879
            public NavigableSet<K> navigableKeySet()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1880
                                                { return emptyNavigableSet(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1881
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  1882
            @java.io.Serial
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1883
            private Object readResolve()        { return EMPTY_NAVIGABLE_MAP; }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1884
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1885
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1886
        /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1887
         * Singleton for {@link emptyNavigableMap()} which is also immutable.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1888
         */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1889
        private static final EmptyNavigableMap<?,?> EMPTY_NAVIGABLE_MAP =
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1890
            new EmptyNavigableMap<>();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1891
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1892
        /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1893
         * The instance we wrap and protect.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1894
         */
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  1895
        @SuppressWarnings("serial") // Conditionally serializable
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1896
        private final NavigableMap<K, ? extends V> nm;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1897
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1898
        UnmodifiableNavigableMap(NavigableMap<K, ? extends V> m)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1899
                                                            {super(m); nm = m;}
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1900
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1901
        public K lowerKey(K key)                   { return nm.lowerKey(key); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1902
        public K floorKey(K key)                   { return nm.floorKey(key); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1903
        public K ceilingKey(K key)               { return nm.ceilingKey(key); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1904
        public K higherKey(K key)                 { return nm.higherKey(key); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1905
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  1906
        @SuppressWarnings("unchecked")
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1907
        public Entry<K, V> lowerEntry(K key) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1908
            Entry<K,V> lower = (Entry<K, V>) nm.lowerEntry(key);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1909
            return (null != lower)
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  1910
                ? new UnmodifiableEntrySet.UnmodifiableEntry<>(lower)
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1911
                : null;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1912
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1913
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  1914
        @SuppressWarnings("unchecked")
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1915
        public Entry<K, V> floorEntry(K key) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1916
            Entry<K,V> floor = (Entry<K, V>) nm.floorEntry(key);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1917
            return (null != floor)
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  1918
                ? new UnmodifiableEntrySet.UnmodifiableEntry<>(floor)
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1919
                : null;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1920
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1921
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  1922
        @SuppressWarnings("unchecked")
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1923
        public Entry<K, V> ceilingEntry(K key) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1924
            Entry<K,V> ceiling = (Entry<K, V>) nm.ceilingEntry(key);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1925
            return (null != ceiling)
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  1926
                ? new UnmodifiableEntrySet.UnmodifiableEntry<>(ceiling)
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1927
                : null;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1928
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1929
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1930
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  1931
        @SuppressWarnings("unchecked")
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1932
        public Entry<K, V> higherEntry(K key) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1933
            Entry<K,V> higher = (Entry<K, V>) nm.higherEntry(key);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1934
            return (null != higher)
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  1935
                ? new UnmodifiableEntrySet.UnmodifiableEntry<>(higher)
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1936
                : null;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1937
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1938
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  1939
        @SuppressWarnings("unchecked")
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1940
        public Entry<K, V> firstEntry() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1941
            Entry<K,V> first = (Entry<K, V>) nm.firstEntry();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1942
            return (null != first)
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  1943
                ? new UnmodifiableEntrySet.UnmodifiableEntry<>(first)
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1944
                : null;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1945
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1946
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  1947
        @SuppressWarnings("unchecked")
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1948
        public Entry<K, V> lastEntry() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1949
            Entry<K,V> last = (Entry<K, V>) nm.lastEntry();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1950
            return (null != last)
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  1951
                ? new UnmodifiableEntrySet.UnmodifiableEntry<>(last)
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1952
                : null;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1953
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1954
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1955
        public Entry<K, V> pollFirstEntry()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1956
                                 { throw new UnsupportedOperationException(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1957
        public Entry<K, V> pollLastEntry()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1958
                                 { throw new UnsupportedOperationException(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1959
        public NavigableMap<K, V> descendingMap()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1960
                       { return unmodifiableNavigableMap(nm.descendingMap()); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1961
        public NavigableSet<K> navigableKeySet()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1962
                     { return unmodifiableNavigableSet(nm.navigableKeySet()); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1963
        public NavigableSet<K> descendingKeySet()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1964
                    { return unmodifiableNavigableSet(nm.descendingKeySet()); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1965
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1966
        public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1967
            return unmodifiableNavigableMap(
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1968
                nm.subMap(fromKey, fromInclusive, toKey, toInclusive));
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1969
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1970
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1971
        public NavigableMap<K, V> headMap(K toKey, boolean inclusive)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1972
             { return unmodifiableNavigableMap(nm.headMap(toKey, inclusive)); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1973
        public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1974
           { return unmodifiableNavigableMap(nm.tailMap(fromKey, inclusive)); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  1975
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1976
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
    // Synch Wrappers
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1979
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1980
     * Returns a synchronized (thread-safe) collection backed by the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1981
     * collection.  In order to guarantee serial access, it is critical that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1982
     * <strong>all</strong> access to the backing collection is accomplished
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1983
     * through the returned collection.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
     * It is imperative that the user manually synchronize on the returned
19603
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  1986
     * collection when traversing it via {@link Iterator}, {@link Spliterator}
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  1987
     * or {@link Stream}:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1988
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
     *  Collection c = Collections.synchronizedCollection(myCollection);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1990
     *     ...
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  1991
     *  synchronized (c) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1992
     *      Iterator i = c.iterator(); // Must be in the synchronized block
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1993
     *      while (i.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
     *         foo(i.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1995
     *  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1996
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
     * Failure to follow this advice may result in non-deterministic behavior.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
     *
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  1999
     * <p>The returned collection does <i>not</i> pass the {@code hashCode}
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2000
     * and {@code equals} operations through to the backing collection, but
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2001
     * relies on {@code Object}'s equals and hashCode methods.  This is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
     * necessary to preserve the contracts of these operations in the case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
     * that the backing collection is a set or a list.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2005
     * The returned collection will be serializable if the specified collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
     * is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  2008
     * @param  <T> the class of the objects in the collection
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
     * @param  c the collection to be "wrapped" in a synchronized collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2010
     * @return a synchronized view of the specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2011
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2012
    public static <T> Collection<T> synchronizedCollection(Collection<T> c) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2013
        return new SynchronizedCollection<>(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2014
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
    static <T> Collection<T> synchronizedCollection(Collection<T> c, Object mutex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2017
        return new SynchronizedCollection<>(c, mutex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2018
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2019
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2020
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2021
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2022
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
    static class SynchronizedCollection<E> implements Collection<E>, Serializable {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  2024
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2025
        private static final long serialVersionUID = 3053995032091335093L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2026
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  2027
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2028
        final Collection<E> c;  // Backing Collection
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  2029
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2030
        final Object mutex;     // Object on which to synchronize
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
        SynchronizedCollection(Collection<E> c) {
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2033
            this.c = Objects.requireNonNull(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
            mutex = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2035
        }
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2036
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2037
        SynchronizedCollection(Collection<E> c, Object mutex) {
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2038
            this.c = Objects.requireNonNull(c);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2039
            this.mutex = Objects.requireNonNull(mutex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2042
        public int size() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2043
            synchronized (mutex) {return c.size();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2044
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2045
        public boolean isEmpty() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2046
            synchronized (mutex) {return c.isEmpty();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2047
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2048
        public boolean contains(Object o) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2049
            synchronized (mutex) {return c.contains(o);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2050
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2051
        public Object[] toArray() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2052
            synchronized (mutex) {return c.toArray();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2053
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2054
        public <T> T[] toArray(T[] a) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2055
            synchronized (mutex) {return c.toArray(a);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2056
        }
50697
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  2057
        public <T> T[] toArray(IntFunction<T[]> f) {
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  2058
            synchronized (mutex) {return c.toArray(f);}
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  2059
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2060
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2061
        public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2062
            return c.iterator(); // Must be manually synched by user!
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2063
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2064
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2065
        public boolean add(E e) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2066
            synchronized (mutex) {return c.add(e);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2068
        public boolean remove(Object o) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2069
            synchronized (mutex) {return c.remove(o);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2070
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2071
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2072
        public boolean containsAll(Collection<?> coll) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2073
            synchronized (mutex) {return c.containsAll(coll);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2074
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2075
        public boolean addAll(Collection<? extends E> coll) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2076
            synchronized (mutex) {return c.addAll(coll);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2077
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2078
        public boolean removeAll(Collection<?> coll) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2079
            synchronized (mutex) {return c.removeAll(coll);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2080
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2081
        public boolean retainAll(Collection<?> coll) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2082
            synchronized (mutex) {return c.retainAll(coll);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2083
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2084
        public void clear() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2085
            synchronized (mutex) {c.clear();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2086
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2087
        public String toString() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2088
            synchronized (mutex) {return c.toString();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2089
        }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  2090
        // Override default methods in Collection
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2091
        @Override
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  2092
        public void forEach(Consumer<? super E> consumer) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  2093
            synchronized (mutex) {c.forEach(consumer);}
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2094
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2095
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2096
        public boolean removeIf(Predicate<? super E> filter) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2097
            synchronized (mutex) {return c.removeIf(filter);}
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2098
        }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  2099
        @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  2100
        public Spliterator<E> spliterator() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  2101
            return c.spliterator(); // Must be manually synched by user!
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  2102
        }
19603
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  2103
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  2104
        public Stream<E> stream() {
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  2105
            return c.stream(); // Must be manually synched by user!
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  2106
        }
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  2107
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  2108
        public Stream<E> parallelStream() {
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  2109
            return c.parallelStream(); // Must be manually synched by user!
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  2110
        }
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  2111
        @java.io.Serial
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  2112
        private void writeObject(ObjectOutputStream s) throws IOException {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  2113
            synchronized (mutex) {s.defaultWriteObject();}
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  2114
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2115
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2116
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2118
     * Returns a synchronized (thread-safe) set backed by the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2119
     * set.  In order to guarantee serial access, it is critical that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2120
     * <strong>all</strong> access to the backing set is accomplished
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2121
     * through the returned set.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2122
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2123
     * It is imperative that the user manually synchronize on the returned
33644
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2124
     * collection when traversing it via {@link Iterator}, {@link Spliterator}
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2125
     * or {@link Stream}:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2126
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2127
     *  Set s = Collections.synchronizedSet(new HashSet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2128
     *      ...
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2129
     *  synchronized (s) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2130
     *      Iterator i = s.iterator(); // Must be in the synchronized block
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2131
     *      while (i.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2132
     *          foo(i.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2133
     *  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2134
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2135
     * Failure to follow this advice may result in non-deterministic behavior.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2136
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2137
     * <p>The returned set will be serializable if the specified set is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2138
     * serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2139
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  2140
     * @param  <T> the class of the objects in the set
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2141
     * @param  s the set to be "wrapped" in a synchronized set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2142
     * @return a synchronized view of the specified set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2143
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2144
    public static <T> Set<T> synchronizedSet(Set<T> s) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2145
        return new SynchronizedSet<>(s);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2146
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2147
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2148
    static <T> Set<T> synchronizedSet(Set<T> s, Object mutex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2149
        return new SynchronizedSet<>(s, mutex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2150
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2151
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2152
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2153
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2154
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2155
    static class SynchronizedSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2156
          extends SynchronizedCollection<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2157
          implements Set<E> {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  2158
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2159
        private static final long serialVersionUID = 487447009682186044L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2160
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2161
        SynchronizedSet(Set<E> s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2162
            super(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2163
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2164
        SynchronizedSet(Set<E> s, Object mutex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2165
            super(s, mutex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2166
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2167
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2168
        public boolean equals(Object o) {
11987
a6dde4427e9d 7144488: Infinite recursion for some equals tests in Collections
coffeys
parents: 10896
diff changeset
  2169
            if (this == o)
a6dde4427e9d 7144488: Infinite recursion for some equals tests in Collections
coffeys
parents: 10896
diff changeset
  2170
                return true;
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2171
            synchronized (mutex) {return c.equals(o);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2172
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2173
        public int hashCode() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2174
            synchronized (mutex) {return c.hashCode();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2175
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2177
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2178
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2179
     * Returns a synchronized (thread-safe) sorted set backed by the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2180
     * sorted set.  In order to guarantee serial access, it is critical that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2181
     * <strong>all</strong> access to the backing sorted set is accomplished
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2182
     * through the returned sorted set (or its views).<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2183
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2184
     * It is imperative that the user manually synchronize on the returned
33644
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2185
     * sorted set when traversing it or any of its {@code subSet},
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2186
     * {@code headSet}, or {@code tailSet} views via {@link Iterator},
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2187
     * {@link Spliterator} or {@link Stream}:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2188
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2189
     *  SortedSet s = Collections.synchronizedSortedSet(new TreeSet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2190
     *      ...
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2191
     *  synchronized (s) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2192
     *      Iterator i = s.iterator(); // Must be in the synchronized block
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2193
     *      while (i.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2194
     *          foo(i.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2195
     *  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2196
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2197
     * or:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2198
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2199
     *  SortedSet s = Collections.synchronizedSortedSet(new TreeSet());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2200
     *  SortedSet s2 = s.headSet(foo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2201
     *      ...
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2202
     *  synchronized (s) {  // Note: s, not s2!!!
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2203
     *      Iterator i = s2.iterator(); // Must be in the synchronized block
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2204
     *      while (i.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2205
     *          foo(i.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2206
     *  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2207
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2208
     * Failure to follow this advice may result in non-deterministic behavior.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2209
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2210
     * <p>The returned sorted set will be serializable if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2211
     * sorted set is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2212
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  2213
     * @param  <T> the class of the objects in the set
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2214
     * @param  s the sorted set to be "wrapped" in a synchronized sorted set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2215
     * @return a synchronized view of the specified sorted set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2216
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2217
    public static <T> SortedSet<T> synchronizedSortedSet(SortedSet<T> s) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2218
        return new SynchronizedSortedSet<>(s);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2219
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2220
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2221
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2222
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2223
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2224
    static class SynchronizedSortedSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2225
        extends SynchronizedSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2226
        implements SortedSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2227
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  2228
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2229
        private static final long serialVersionUID = 8695801310862127406L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2230
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  2231
        @SuppressWarnings("serial") // Conditionally serializable
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2232
        private final SortedSet<E> ss;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2233
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2234
        SynchronizedSortedSet(SortedSet<E> s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2235
            super(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2236
            ss = s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2237
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2238
        SynchronizedSortedSet(SortedSet<E> s, Object mutex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2239
            super(s, mutex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2240
            ss = s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2241
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2242
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2243
        public Comparator<? super E> comparator() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2244
            synchronized (mutex) {return ss.comparator();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2245
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2246
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2247
        public SortedSet<E> subSet(E fromElement, E toElement) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2248
            synchronized (mutex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2249
                return new SynchronizedSortedSet<>(
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2250
                    ss.subSet(fromElement, toElement), mutex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2251
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2252
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2253
        public SortedSet<E> headSet(E toElement) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2254
            synchronized (mutex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2255
                return new SynchronizedSortedSet<>(ss.headSet(toElement), mutex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2256
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2257
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2258
        public SortedSet<E> tailSet(E fromElement) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2259
            synchronized (mutex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2260
               return new SynchronizedSortedSet<>(ss.tailSet(fromElement),mutex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2261
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2262
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2263
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2264
        public E first() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2265
            synchronized (mutex) {return ss.first();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2266
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2267
        public E last() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2268
            synchronized (mutex) {return ss.last();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2269
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2270
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2271
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2272
    /**
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2273
     * Returns a synchronized (thread-safe) navigable set backed by the
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2274
     * specified navigable set.  In order to guarantee serial access, it is
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2275
     * critical that <strong>all</strong> access to the backing navigable set is
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2276
     * accomplished through the returned navigable set (or its views).<p>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2277
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2278
     * It is imperative that the user manually synchronize on the returned
33644
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2279
     * navigable set when traversing it, or any of its {@code subSet},
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2280
     * {@code headSet}, or {@code tailSet} views, via {@link Iterator},
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2281
     * {@link Spliterator} or {@link Stream}:
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2282
     * <pre>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2283
     *  NavigableSet s = Collections.synchronizedNavigableSet(new TreeSet());
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2284
     *      ...
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2285
     *  synchronized (s) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2286
     *      Iterator i = s.iterator(); // Must be in the synchronized block
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2287
     *      while (i.hasNext())
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2288
     *          foo(i.next());
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2289
     *  }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2290
     * </pre>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2291
     * or:
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2292
     * <pre>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2293
     *  NavigableSet s = Collections.synchronizedNavigableSet(new TreeSet());
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2294
     *  NavigableSet s2 = s.headSet(foo, true);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2295
     *      ...
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2296
     *  synchronized (s) {  // Note: s, not s2!!!
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2297
     *      Iterator i = s2.iterator(); // Must be in the synchronized block
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2298
     *      while (i.hasNext())
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2299
     *          foo(i.next());
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2300
     *  }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2301
     * </pre>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2302
     * Failure to follow this advice may result in non-deterministic behavior.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2303
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2304
     * <p>The returned navigable set will be serializable if the specified
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2305
     * navigable set is serializable.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2306
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  2307
     * @param  <T> the class of the objects in the set
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2308
     * @param  s the navigable set to be "wrapped" in a synchronized navigable
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2309
     * set
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2310
     * @return a synchronized view of the specified navigable set
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2311
     * @since 1.8
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2312
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2313
    public static <T> NavigableSet<T> synchronizedNavigableSet(NavigableSet<T> s) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2314
        return new SynchronizedNavigableSet<>(s);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2315
    }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2316
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2317
    /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2318
     * @serial include
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2319
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2320
    static class SynchronizedNavigableSet<E>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2321
        extends SynchronizedSortedSet<E>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2322
        implements NavigableSet<E>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2323
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  2324
        @java.io.Serial
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2325
        private static final long serialVersionUID = -5505529816273629798L;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2326
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  2327
        @SuppressWarnings("serial") // Conditionally serializable
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2328
        private final NavigableSet<E> ns;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2329
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2330
        SynchronizedNavigableSet(NavigableSet<E> s) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2331
            super(s);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2332
            ns = s;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2333
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2334
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2335
        SynchronizedNavigableSet(NavigableSet<E> s, Object mutex) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2336
            super(s, mutex);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2337
            ns = s;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2338
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2339
        public E lower(E e)      { synchronized (mutex) {return ns.lower(e);} }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2340
        public E floor(E e)      { synchronized (mutex) {return ns.floor(e);} }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2341
        public E ceiling(E e)  { synchronized (mutex) {return ns.ceiling(e);} }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2342
        public E higher(E e)    { synchronized (mutex) {return ns.higher(e);} }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2343
        public E pollFirst()  { synchronized (mutex) {return ns.pollFirst();} }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2344
        public E pollLast()    { synchronized (mutex) {return ns.pollLast();} }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2345
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2346
        public NavigableSet<E> descendingSet() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2347
            synchronized (mutex) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2348
                return new SynchronizedNavigableSet<>(ns.descendingSet(), mutex);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2349
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2350
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2351
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2352
        public Iterator<E> descendingIterator()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2353
                 { synchronized (mutex) { return descendingSet().iterator(); } }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2354
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2355
        public NavigableSet<E> subSet(E fromElement, E toElement) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2356
            synchronized (mutex) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2357
                return new SynchronizedNavigableSet<>(ns.subSet(fromElement, true, toElement, false), mutex);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2358
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2359
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2360
        public NavigableSet<E> headSet(E toElement) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2361
            synchronized (mutex) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2362
                return new SynchronizedNavigableSet<>(ns.headSet(toElement, false), mutex);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2363
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2364
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2365
        public NavigableSet<E> tailSet(E fromElement) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2366
            synchronized (mutex) {
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  2367
                return new SynchronizedNavigableSet<>(ns.tailSet(fromElement, true), mutex);
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2368
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2369
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2370
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2371
        public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2372
            synchronized (mutex) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2373
                return new SynchronizedNavigableSet<>(ns.subSet(fromElement, fromInclusive, toElement, toInclusive), mutex);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2374
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2375
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2376
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2377
        public NavigableSet<E> headSet(E toElement, boolean inclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2378
            synchronized (mutex) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2379
                return new SynchronizedNavigableSet<>(ns.headSet(toElement, inclusive), mutex);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2380
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2381
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2382
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2383
        public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2384
            synchronized (mutex) {
25748
8914cd976d19 8048209: Collections.synchronizedNavigableSet().tailSet(Object,boolean) synchronizes on wrong object
mduigou
parents: 25177
diff changeset
  2385
                return new SynchronizedNavigableSet<>(ns.tailSet(fromElement, inclusive), mutex);
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2386
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2387
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2388
    }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2389
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2390
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2391
     * Returns a synchronized (thread-safe) list backed by the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2392
     * list.  In order to guarantee serial access, it is critical that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2393
     * <strong>all</strong> access to the backing list is accomplished
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2394
     * through the returned list.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2395
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2396
     * It is imperative that the user manually synchronize on the returned
33644
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2397
     * list when traversing it via {@link Iterator}, {@link Spliterator}
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2398
     * or {@link Stream}:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2399
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2400
     *  List list = Collections.synchronizedList(new ArrayList());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2401
     *      ...
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2402
     *  synchronized (list) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2403
     *      Iterator i = list.iterator(); // Must be in synchronized block
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2404
     *      while (i.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2405
     *          foo(i.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2406
     *  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2407
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2408
     * Failure to follow this advice may result in non-deterministic behavior.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2409
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2410
     * <p>The returned list will be serializable if the specified list is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2411
     * serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2412
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  2413
     * @param  <T> the class of the objects in the list
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2414
     * @param  list the list to be "wrapped" in a synchronized list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2415
     * @return a synchronized view of the specified list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2416
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2417
    public static <T> List<T> synchronizedList(List<T> list) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2418
        return (list instanceof RandomAccess ?
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2419
                new SynchronizedRandomAccessList<>(list) :
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2420
                new SynchronizedList<>(list));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2421
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2422
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2423
    static <T> List<T> synchronizedList(List<T> list, Object mutex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2424
        return (list instanceof RandomAccess ?
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2425
                new SynchronizedRandomAccessList<>(list, mutex) :
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2426
                new SynchronizedList<>(list, mutex));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2427
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2428
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2429
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2430
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2431
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2432
    static class SynchronizedList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2433
        extends SynchronizedCollection<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2434
        implements List<E> {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  2435
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2436
        private static final long serialVersionUID = -7754090372962971524L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2437
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  2438
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2439
        final List<E> list;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2440
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2441
        SynchronizedList(List<E> list) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2442
            super(list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2443
            this.list = list;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2444
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2445
        SynchronizedList(List<E> list, Object mutex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2446
            super(list, mutex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2447
            this.list = list;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2448
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2449
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2450
        public boolean equals(Object o) {
11987
a6dde4427e9d 7144488: Infinite recursion for some equals tests in Collections
coffeys
parents: 10896
diff changeset
  2451
            if (this == o)
a6dde4427e9d 7144488: Infinite recursion for some equals tests in Collections
coffeys
parents: 10896
diff changeset
  2452
                return true;
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2453
            synchronized (mutex) {return list.equals(o);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2454
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2455
        public int hashCode() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2456
            synchronized (mutex) {return list.hashCode();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2457
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2458
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2459
        public E get(int index) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2460
            synchronized (mutex) {return list.get(index);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2461
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2462
        public E set(int index, E element) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2463
            synchronized (mutex) {return list.set(index, element);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2464
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2465
        public void add(int index, E element) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2466
            synchronized (mutex) {list.add(index, element);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2467
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2468
        public E remove(int index) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2469
            synchronized (mutex) {return list.remove(index);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2470
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2471
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2472
        public int indexOf(Object o) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2473
            synchronized (mutex) {return list.indexOf(o);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2474
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2475
        public int lastIndexOf(Object o) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2476
            synchronized (mutex) {return list.lastIndexOf(o);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2477
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2478
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2479
        public boolean addAll(int index, Collection<? extends E> c) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2480
            synchronized (mutex) {return list.addAll(index, c);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2481
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2482
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2483
        public ListIterator<E> listIterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2484
            return list.listIterator(); // Must be manually synched by user
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2485
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2486
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2487
        public ListIterator<E> listIterator(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2488
            return list.listIterator(index); // Must be manually synched by user
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2489
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2490
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2491
        public List<E> subList(int fromIndex, int toIndex) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2492
            synchronized (mutex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2493
                return new SynchronizedList<>(list.subList(fromIndex, toIndex),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2494
                                            mutex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2495
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2496
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2497
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2498
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2499
        public void replaceAll(UnaryOperator<E> operator) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2500
            synchronized (mutex) {list.replaceAll(operator);}
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2501
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2502
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2503
        public void sort(Comparator<? super E> c) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2504
            synchronized (mutex) {list.sort(c);}
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2505
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  2506
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2507
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2508
         * SynchronizedRandomAccessList instances are serialized as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2509
         * SynchronizedList instances to allow them to be deserialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2510
         * in pre-1.4 JREs (which do not have SynchronizedRandomAccessList).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2511
         * This method inverts the transformation.  As a beneficial
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2512
         * side-effect, it also grafts the RandomAccess marker onto
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2513
         * SynchronizedList instances that were serialized in pre-1.4 JREs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2514
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2515
         * Note: Unfortunately, SynchronizedRandomAccessList instances
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2516
         * serialized in 1.4.1 and deserialized in 1.4 will become
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2517
         * SynchronizedList instances, as this method was missing in 1.4.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2518
         */
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  2519
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2520
        private Object readResolve() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2521
            return (list instanceof RandomAccess
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2522
                    ? new SynchronizedRandomAccessList<>(list)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2523
                    : this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2524
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2525
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2526
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2527
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2528
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2529
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2530
    static class SynchronizedRandomAccessList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2531
        extends SynchronizedList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2532
        implements RandomAccess {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2533
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2534
        SynchronizedRandomAccessList(List<E> list) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2535
            super(list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2536
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2537
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2538
        SynchronizedRandomAccessList(List<E> list, Object mutex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2539
            super(list, mutex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2540
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2541
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2542
        public List<E> subList(int fromIndex, int toIndex) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2543
            synchronized (mutex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2544
                return new SynchronizedRandomAccessList<>(
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2545
                    list.subList(fromIndex, toIndex), mutex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2546
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2547
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2548
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  2549
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2550
        private static final long serialVersionUID = 1530674583602358482L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2551
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2552
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2553
         * Allows instances to be deserialized in pre-1.4 JREs (which do
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2554
         * not have SynchronizedRandomAccessList).  SynchronizedList has
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2555
         * a readResolve method that inverts this transformation upon
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2556
         * deserialization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2557
         */
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  2558
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2559
        private Object writeReplace() {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2560
            return new SynchronizedList<>(list);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2561
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2562
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2563
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2564
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2565
     * Returns a synchronized (thread-safe) map backed by the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2566
     * map.  In order to guarantee serial access, it is critical that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2567
     * <strong>all</strong> access to the backing map is accomplished
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2568
     * through the returned map.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2569
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2570
     * It is imperative that the user manually synchronize on the returned
33644
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2571
     * map when traversing any of its collection views via {@link Iterator},
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2572
     * {@link Spliterator} or {@link Stream}:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2573
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2574
     *  Map m = Collections.synchronizedMap(new HashMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2575
     *      ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2576
     *  Set s = m.keySet();  // Needn't be in synchronized block
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2577
     *      ...
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2578
     *  synchronized (m) {  // Synchronizing on m, not s!
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2579
     *      Iterator i = s.iterator(); // Must be in synchronized block
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2580
     *      while (i.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2581
     *          foo(i.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2582
     *  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2583
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2584
     * Failure to follow this advice may result in non-deterministic behavior.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2585
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2586
     * <p>The returned map will be serializable if the specified map is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2587
     * serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2588
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  2589
     * @param <K> the class of the map keys
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  2590
     * @param <V> the class of the map values
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2591
     * @param  m the map to be "wrapped" in a synchronized map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2592
     * @return a synchronized view of the specified map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2593
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2594
    public static <K,V> Map<K,V> synchronizedMap(Map<K,V> m) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2595
        return new SynchronizedMap<>(m);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2596
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2597
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2598
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2599
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2600
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2601
    private static class SynchronizedMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2602
        implements Map<K,V>, Serializable {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  2603
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2604
        private static final long serialVersionUID = 1978198479659022715L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2605
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  2606
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2607
        private final Map<K,V> m;     // Backing Map
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  2608
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2609
        final Object      mutex;        // Object on which to synchronize
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2610
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2611
        SynchronizedMap(Map<K,V> m) {
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2612
            this.m = Objects.requireNonNull(m);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2613
            mutex = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2614
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2615
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2616
        SynchronizedMap(Map<K,V> m, Object mutex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2617
            this.m = m;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2618
            this.mutex = mutex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2619
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2620
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2621
        public int size() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2622
            synchronized (mutex) {return m.size();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2623
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2624
        public boolean isEmpty() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2625
            synchronized (mutex) {return m.isEmpty();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2626
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2627
        public boolean containsKey(Object key) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2628
            synchronized (mutex) {return m.containsKey(key);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2629
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2630
        public boolean containsValue(Object value) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2631
            synchronized (mutex) {return m.containsValue(value);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2632
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2633
        public V get(Object key) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2634
            synchronized (mutex) {return m.get(key);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2635
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2636
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2637
        public V put(K key, V value) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2638
            synchronized (mutex) {return m.put(key, value);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2639
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2640
        public V remove(Object key) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2641
            synchronized (mutex) {return m.remove(key);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2642
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2643
        public void putAll(Map<? extends K, ? extends V> map) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2644
            synchronized (mutex) {m.putAll(map);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2645
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2646
        public void clear() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2647
            synchronized (mutex) {m.clear();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2648
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2649
23746
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22285
diff changeset
  2650
        private transient Set<K> keySet;
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22285
diff changeset
  2651
        private transient Set<Map.Entry<K,V>> entrySet;
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22285
diff changeset
  2652
        private transient Collection<V> values;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2653
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2654
        public Set<K> keySet() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2655
            synchronized (mutex) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2656
                if (keySet==null)
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2657
                    keySet = new SynchronizedSet<>(m.keySet(), mutex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2658
                return keySet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2659
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2660
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2661
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2662
        public Set<Map.Entry<K,V>> entrySet() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2663
            synchronized (mutex) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2664
                if (entrySet==null)
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2665
                    entrySet = new SynchronizedSet<>(m.entrySet(), mutex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2666
                return entrySet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2667
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2668
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2669
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2670
        public Collection<V> values() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2671
            synchronized (mutex) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2672
                if (values==null)
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2673
                    values = new SynchronizedCollection<>(m.values(), mutex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2674
                return values;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2675
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2676
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2677
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2678
        public boolean equals(Object o) {
11987
a6dde4427e9d 7144488: Infinite recursion for some equals tests in Collections
coffeys
parents: 10896
diff changeset
  2679
            if (this == o)
a6dde4427e9d 7144488: Infinite recursion for some equals tests in Collections
coffeys
parents: 10896
diff changeset
  2680
                return true;
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2681
            synchronized (mutex) {return m.equals(o);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2682
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2683
        public int hashCode() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2684
            synchronized (mutex) {return m.hashCode();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2685
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2686
        public String toString() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2687
            synchronized (mutex) {return m.toString();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2688
        }
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2689
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2690
        // Override default methods in Map
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2691
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2692
        public V getOrDefault(Object k, V defaultValue) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2693
            synchronized (mutex) {return m.getOrDefault(k, defaultValue);}
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2694
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2695
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2696
        public void forEach(BiConsumer<? super K, ? super V> action) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2697
            synchronized (mutex) {m.forEach(action);}
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2698
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2699
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2700
        public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2701
            synchronized (mutex) {m.replaceAll(function);}
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2702
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2703
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2704
        public V putIfAbsent(K key, V value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2705
            synchronized (mutex) {return m.putIfAbsent(key, value);}
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2706
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2707
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2708
        public boolean remove(Object key, Object value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2709
            synchronized (mutex) {return m.remove(key, value);}
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2710
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2711
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2712
        public boolean replace(K key, V oldValue, V newValue) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2713
            synchronized (mutex) {return m.replace(key, oldValue, newValue);}
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2714
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2715
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2716
        public V replace(K key, V value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2717
            synchronized (mutex) {return m.replace(key, value);}
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2718
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2719
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2720
        public V computeIfAbsent(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2721
                Function<? super K, ? extends V> mappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2722
            synchronized (mutex) {return m.computeIfAbsent(key, mappingFunction);}
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2723
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2724
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2725
        public V computeIfPresent(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2726
                BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2727
            synchronized (mutex) {return m.computeIfPresent(key, remappingFunction);}
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2728
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2729
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2730
        public V compute(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2731
                BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2732
            synchronized (mutex) {return m.compute(key, remappingFunction);}
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2733
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2734
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2735
        public V merge(K key, V value,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2736
                BiFunction<? super V, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2737
            synchronized (mutex) {return m.merge(key, value, remappingFunction);}
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2738
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  2739
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  2740
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2741
        private void writeObject(ObjectOutputStream s) throws IOException {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2742
            synchronized (mutex) {s.defaultWriteObject();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2743
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2744
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2745
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2746
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2747
     * Returns a synchronized (thread-safe) sorted map backed by the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2748
     * sorted map.  In order to guarantee serial access, it is critical that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2749
     * <strong>all</strong> access to the backing sorted map is accomplished
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2750
     * through the returned sorted map (or its views).<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2751
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2752
     * It is imperative that the user manually synchronize on the returned
33644
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2753
     * sorted map when traversing any of its collection views, or the
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  2754
     * collections views of any of its {@code subMap}, {@code headMap} or
33644
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2755
     * {@code tailMap} views, via {@link Iterator}, {@link Spliterator} or
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2756
     * {@link Stream}:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2757
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2758
     *  SortedMap m = Collections.synchronizedSortedMap(new TreeMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2759
     *      ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2760
     *  Set s = m.keySet();  // Needn't be in synchronized block
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2761
     *      ...
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2762
     *  synchronized (m) {  // Synchronizing on m, not s!
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2763
     *      Iterator i = s.iterator(); // Must be in synchronized block
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2764
     *      while (i.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2765
     *          foo(i.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2766
     *  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2767
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2768
     * or:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2769
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2770
     *  SortedMap m = Collections.synchronizedSortedMap(new TreeMap());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2771
     *  SortedMap m2 = m.subMap(foo, bar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2772
     *      ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2773
     *  Set s2 = m2.keySet();  // Needn't be in synchronized block
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2774
     *      ...
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2775
     *  synchronized (m) {  // Synchronizing on m, not m2 or s2!
36436
c538d4a57e10 8043329: Wrong variable used in java.util.Collections javadoc code
rriggs
parents: 34714
diff changeset
  2776
     *      Iterator i = s2.iterator(); // Must be in synchronized block
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2777
     *      while (i.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2778
     *          foo(i.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2779
     *  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2780
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2781
     * Failure to follow this advice may result in non-deterministic behavior.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2782
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2783
     * <p>The returned sorted map will be serializable if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2784
     * sorted map is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2785
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  2786
     * @param <K> the class of the map keys
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  2787
     * @param <V> the class of the map values
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2788
     * @param  m the sorted map to be "wrapped" in a synchronized sorted map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2789
     * @return a synchronized view of the specified sorted map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2790
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2791
    public static <K,V> SortedMap<K,V> synchronizedSortedMap(SortedMap<K,V> m) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2792
        return new SynchronizedSortedMap<>(m);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2793
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2794
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2795
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2796
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2797
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2798
    static class SynchronizedSortedMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2799
        extends SynchronizedMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2800
        implements SortedMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2801
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  2802
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2803
        private static final long serialVersionUID = -8798146769416483793L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2804
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  2805
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2806
        private final SortedMap<K,V> sm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2807
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2808
        SynchronizedSortedMap(SortedMap<K,V> m) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2809
            super(m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2810
            sm = m;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2811
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2812
        SynchronizedSortedMap(SortedMap<K,V> m, Object mutex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2813
            super(m, mutex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2814
            sm = m;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2815
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2816
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2817
        public Comparator<? super K> comparator() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2818
            synchronized (mutex) {return sm.comparator();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2819
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2820
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2821
        public SortedMap<K,V> subMap(K fromKey, K toKey) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2822
            synchronized (mutex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2823
                return new SynchronizedSortedMap<>(
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2824
                    sm.subMap(fromKey, toKey), mutex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2825
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2826
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2827
        public SortedMap<K,V> headMap(K toKey) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2828
            synchronized (mutex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2829
                return new SynchronizedSortedMap<>(sm.headMap(toKey), mutex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2830
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2831
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2832
        public SortedMap<K,V> tailMap(K fromKey) {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2833
            synchronized (mutex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  2834
               return new SynchronizedSortedMap<>(sm.tailMap(fromKey),mutex);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2835
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2836
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2837
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2838
        public K firstKey() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2839
            synchronized (mutex) {return sm.firstKey();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2840
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2841
        public K lastKey() {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  2842
            synchronized (mutex) {return sm.lastKey();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2843
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2844
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2845
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2846
    /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2847
     * Returns a synchronized (thread-safe) navigable map backed by the
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2848
     * specified navigable map.  In order to guarantee serial access, it is
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2849
     * critical that <strong>all</strong> access to the backing navigable map is
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2850
     * accomplished through the returned navigable map (or its views).<p>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2851
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2852
     * It is imperative that the user manually synchronize on the returned
33644
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2853
     * navigable map when traversing any of its collection views, or the
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2854
     * collections views of any of its {@code subMap}, {@code headMap} or
33644
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2855
     * {@code tailMap} views, via {@link Iterator}, {@link Spliterator} or
c60dc808ff5a 8141630: Specification of Collections.synchronized* need to state traversal constraints
psandoz
parents: 32994
diff changeset
  2856
     * {@link Stream}:
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2857
     * <pre>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2858
     *  NavigableMap m = Collections.synchronizedNavigableMap(new TreeMap());
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2859
     *      ...
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2860
     *  Set s = m.keySet();  // Needn't be in synchronized block
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2861
     *      ...
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2862
     *  synchronized (m) {  // Synchronizing on m, not s!
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2863
     *      Iterator i = s.iterator(); // Must be in synchronized block
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2864
     *      while (i.hasNext())
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2865
     *          foo(i.next());
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2866
     *  }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2867
     * </pre>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2868
     * or:
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2869
     * <pre>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2870
     *  NavigableMap m = Collections.synchronizedNavigableMap(new TreeMap());
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2871
     *  NavigableMap m2 = m.subMap(foo, true, bar, false);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2872
     *      ...
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2873
     *  Set s2 = m2.keySet();  // Needn't be in synchronized block
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2874
     *      ...
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2875
     *  synchronized (m) {  // Synchronizing on m, not m2 or s2!
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2876
     *      Iterator i = s.iterator(); // Must be in synchronized block
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2877
     *      while (i.hasNext())
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2878
     *          foo(i.next());
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2879
     *  }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2880
     * </pre>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2881
     * Failure to follow this advice may result in non-deterministic behavior.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2882
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2883
     * <p>The returned navigable map will be serializable if the specified
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2884
     * navigable map is serializable.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2885
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  2886
     * @param <K> the class of the map keys
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  2887
     * @param <V> the class of the map values
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2888
     * @param  m the navigable map to be "wrapped" in a synchronized navigable
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2889
     *              map
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2890
     * @return a synchronized view of the specified navigable map.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2891
     * @since 1.8
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2892
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2893
    public static <K,V> NavigableMap<K,V> synchronizedNavigableMap(NavigableMap<K,V> m) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2894
        return new SynchronizedNavigableMap<>(m);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2895
    }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2896
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2897
    /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2898
     * A synchronized NavigableMap.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2899
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2900
     * @serial include
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2901
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2902
    static class SynchronizedNavigableMap<K,V>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2903
        extends SynchronizedSortedMap<K,V>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2904
        implements NavigableMap<K,V>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2905
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  2906
        @java.io.Serial
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2907
        private static final long serialVersionUID = 699392247599746807L;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2908
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  2909
        @SuppressWarnings("serial") // Conditionally serializable
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2910
        private final NavigableMap<K,V> nm;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2911
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2912
        SynchronizedNavigableMap(NavigableMap<K,V> m) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2913
            super(m);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2914
            nm = m;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2915
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2916
        SynchronizedNavigableMap(NavigableMap<K,V> m, Object mutex) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2917
            super(m, mutex);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2918
            nm = m;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2919
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2920
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2921
        public Entry<K, V> lowerEntry(K key)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2922
                        { synchronized (mutex) { return nm.lowerEntry(key); } }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2923
        public K lowerKey(K key)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2924
                          { synchronized (mutex) { return nm.lowerKey(key); } }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2925
        public Entry<K, V> floorEntry(K key)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2926
                        { synchronized (mutex) { return nm.floorEntry(key); } }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2927
        public K floorKey(K key)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2928
                          { synchronized (mutex) { return nm.floorKey(key); } }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2929
        public Entry<K, V> ceilingEntry(K key)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2930
                      { synchronized (mutex) { return nm.ceilingEntry(key); } }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2931
        public K ceilingKey(K key)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2932
                        { synchronized (mutex) { return nm.ceilingKey(key); } }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2933
        public Entry<K, V> higherEntry(K key)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2934
                       { synchronized (mutex) { return nm.higherEntry(key); } }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2935
        public K higherKey(K key)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2936
                         { synchronized (mutex) { return nm.higherKey(key); } }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2937
        public Entry<K, V> firstEntry()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2938
                           { synchronized (mutex) { return nm.firstEntry(); } }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2939
        public Entry<K, V> lastEntry()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2940
                            { synchronized (mutex) { return nm.lastEntry(); } }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2941
        public Entry<K, V> pollFirstEntry()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2942
                       { synchronized (mutex) { return nm.pollFirstEntry(); } }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2943
        public Entry<K, V> pollLastEntry()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2944
                        { synchronized (mutex) { return nm.pollLastEntry(); } }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2945
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2946
        public NavigableMap<K, V> descendingMap() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2947
            synchronized (mutex) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2948
                return
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  2949
                    new SynchronizedNavigableMap<>(nm.descendingMap(), mutex);
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2950
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2951
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2952
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2953
        public NavigableSet<K> keySet() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2954
            return navigableKeySet();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2955
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2956
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2957
        public NavigableSet<K> navigableKeySet() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2958
            synchronized (mutex) {
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  2959
                return new SynchronizedNavigableSet<>(nm.navigableKeySet(), mutex);
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2960
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2961
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2962
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2963
        public NavigableSet<K> descendingKeySet() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2964
            synchronized (mutex) {
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  2965
                return new SynchronizedNavigableSet<>(nm.descendingKeySet(), mutex);
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2966
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2967
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2968
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2969
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2970
        public SortedMap<K,V> subMap(K fromKey, K toKey) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2971
            synchronized (mutex) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2972
                return new SynchronizedNavigableMap<>(
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2973
                    nm.subMap(fromKey, true, toKey, false), mutex);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2974
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2975
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2976
        public SortedMap<K,V> headMap(K toKey) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2977
            synchronized (mutex) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2978
                return new SynchronizedNavigableMap<>(nm.headMap(toKey, false), mutex);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2979
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2980
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2981
        public SortedMap<K,V> tailMap(K fromKey) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2982
            synchronized (mutex) {
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  2983
        return new SynchronizedNavigableMap<>(nm.tailMap(fromKey, true),mutex);
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2984
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2985
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2986
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2987
        public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2988
            synchronized (mutex) {
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  2989
                return new SynchronizedNavigableMap<>(
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2990
                    nm.subMap(fromKey, fromInclusive, toKey, toInclusive), mutex);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2991
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2992
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2993
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2994
        public NavigableMap<K, V> headMap(K toKey, boolean inclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2995
            synchronized (mutex) {
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  2996
                return new SynchronizedNavigableMap<>(
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2997
                        nm.headMap(toKey, inclusive), mutex);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2998
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  2999
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3000
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3001
        public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3002
            synchronized (mutex) {
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  3003
                return new SynchronizedNavigableMap<>(
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3004
                    nm.tailMap(fromKey, inclusive), mutex);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3005
            }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3006
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3007
    }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3008
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3009
    // Dynamically typesafe collection wrappers
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3010
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3011
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3012
     * Returns a dynamically typesafe view of the specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3013
     * Any attempt to insert an element of the wrong type will result in an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3014
     * immediate {@link ClassCastException}.  Assuming a collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3015
     * contains no incorrectly typed elements prior to the time a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3016
     * dynamically typesafe view is generated, and that all subsequent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3017
     * access to the collection takes place through the view, it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3018
     * <i>guaranteed</i> that the collection cannot contain an incorrectly
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3019
     * typed element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3020
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3021
     * <p>The generics mechanism in the language provides compile-time
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3022
     * (static) type checking, but it is possible to defeat this mechanism
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3023
     * with unchecked casts.  Usually this is not a problem, as the compiler
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3024
     * issues warnings on all such unchecked operations.  There are, however,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3025
     * times when static type checking alone is not sufficient.  For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3026
     * suppose a collection is passed to a third-party library and it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3027
     * imperative that the library code not corrupt the collection by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3028
     * inserting an element of the wrong type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3029
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3030
     * <p>Another use of dynamically typesafe views is debugging.  Suppose a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3031
     * program fails with a {@code ClassCastException}, indicating that an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3032
     * incorrectly typed element was put into a parameterized collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3033
     * Unfortunately, the exception can occur at any time after the erroneous
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3034
     * element is inserted, so it typically provides little or no information
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3035
     * as to the real source of the problem.  If the problem is reproducible,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3036
     * one can quickly determine its source by temporarily modifying the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3037
     * program to wrap the collection with a dynamically typesafe view.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3038
     * For example, this declaration:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3039
     *  <pre> {@code
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3040
     *     Collection<String> c = new HashSet<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3041
     * }</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3042
     * may be replaced temporarily by this one:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3043
     *  <pre> {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3044
     *     Collection<String> c = Collections.checkedCollection(
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3045
     *         new HashSet<>(), String.class);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3046
     * }</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3047
     * Running the program again will cause it to fail at the point where
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3048
     * an incorrectly typed element is inserted into the collection, clearly
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3049
     * identifying the source of the problem.  Once the problem is fixed, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3050
     * modified declaration may be reverted back to the original.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3051
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3052
     * <p>The returned collection does <i>not</i> pass the hashCode and equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3053
     * operations through to the backing collection, but relies on
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3054
     * {@code Object}'s {@code equals} and {@code hashCode} methods.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3055
     * is necessary to preserve the contracts of these operations in the case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3056
     * that the backing collection is a set or a list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3057
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3058
     * <p>The returned collection will be serializable if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3059
     * collection is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3060
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3061
     * <p>Since {@code null} is considered to be a value of any reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3062
     * type, the returned collection permits insertion of null elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3063
     * whenever the backing collection does.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3064
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  3065
     * @param <E> the class of the objects in the collection
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3066
     * @param c the collection for which a dynamically typesafe view is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3067
     *          returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3068
     * @param type the type of element that {@code c} is permitted to hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3069
     * @return a dynamically typesafe view of the specified collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3070
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3071
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3072
    public static <E> Collection<E> checkedCollection(Collection<E> c,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3073
                                                      Class<E> type) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  3074
        return new CheckedCollection<>(c, type);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3075
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3076
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3077
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3078
    static <T> T[] zeroLengthArray(Class<T> type) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3079
        return (T[]) Array.newInstance(type, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3080
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3081
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3082
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3083
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3084
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3085
    static class CheckedCollection<E> implements Collection<E>, Serializable {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  3086
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3087
        private static final long serialVersionUID = 1578914078182001775L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3088
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  3089
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3090
        final Collection<E> c;
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  3091
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3092
        final Class<E> type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3093
25171
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3094
        @SuppressWarnings("unchecked")
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3095
        E typeCheck(Object o) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3096
            if (o != null && !type.isInstance(o))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3097
                throw new ClassCastException(badElementMsg(o));
25171
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3098
            return (E) o;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3099
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3100
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3101
        private String badElementMsg(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3102
            return "Attempt to insert " + o.getClass() +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3103
                " element into collection with element type " + type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3104
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3105
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3106
        CheckedCollection(Collection<E> c, Class<E> type) {
25171
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3107
            this.c = Objects.requireNonNull(c, "c");
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3108
            this.type = Objects.requireNonNull(type, "type");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3109
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3110
50697
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  3111
        public int size()                          { return c.size(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  3112
        public boolean isEmpty()                   { return c.isEmpty(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  3113
        public boolean contains(Object o)          { return c.contains(o); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  3114
        public Object[] toArray()                  { return c.toArray(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  3115
        public <T> T[] toArray(T[] a)              { return c.toArray(a); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  3116
        public <T> T[] toArray(IntFunction<T[]> f) { return c.toArray(f); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  3117
        public String toString()                   { return c.toString(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  3118
        public boolean remove(Object o)            { return c.remove(o); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  3119
        public void clear()                        {        c.clear(); }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3120
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3121
        public boolean containsAll(Collection<?> coll) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3122
            return c.containsAll(coll);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3123
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3124
        public boolean removeAll(Collection<?> coll) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3125
            return c.removeAll(coll);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3126
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3127
        public boolean retainAll(Collection<?> coll) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3128
            return c.retainAll(coll);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3129
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3130
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3131
        public Iterator<E> iterator() {
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3132
            // JDK-6363904 - unwrapped iterator could be typecast to
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3133
            // ListIterator with unsafe set()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3134
            final Iterator<E> it = c.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3135
            return new Iterator<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3136
                public boolean hasNext() { return it.hasNext(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3137
                public E next()          { return it.next(); }
50775
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  3138
                public void remove()     {        it.remove(); }
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  3139
                public void forEachRemaining(Consumer<? super E> action) {
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  3140
                    it.forEachRemaining(action);
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  3141
                }
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  3142
            };
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3143
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3144
25177
487a5e71f6dd 8048207: Collections.checkedQueue.offer() calls add on wrapped queue
mduigou
parents: 25171
diff changeset
  3145
        public boolean add(E e)          { return c.add(typeCheck(e)); }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3146
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  3147
        @SuppressWarnings("serial") // Conditionally serializable
23746
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22285
diff changeset
  3148
        private E[] zeroLengthElementArray; // Lazily initialized
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3149
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3150
        private E[] zeroLengthElementArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3151
            return zeroLengthElementArray != null ? zeroLengthElementArray :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3152
                (zeroLengthElementArray = zeroLengthArray(type));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3153
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3154
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3155
        @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3156
        Collection<E> checkedCopyOf(Collection<? extends E> coll) {
25171
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3157
            Object[] a;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3158
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3159
                E[] z = zeroLengthElementArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3160
                a = coll.toArray(z);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3161
                // Defend against coll violating the toArray contract
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3162
                if (a.getClass() != z.getClass())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3163
                    a = Arrays.copyOf(a, a.length, z.getClass());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3164
            } catch (ArrayStoreException ignore) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3165
                // To get better and consistent diagnostics,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3166
                // we call typeCheck explicitly on each element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3167
                // We call clone() to defend against coll retaining a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3168
                // reference to the returned array and storing a bad
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3169
                // element into it after it has been type checked.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3170
                a = coll.toArray().clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3171
                for (Object o : a)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3172
                    typeCheck(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3173
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3174
            // A slight abuse of the type system, but safe here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3175
            return (Collection<E>) Arrays.asList(a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3176
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3177
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3178
        public boolean addAll(Collection<? extends E> coll) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3179
            // Doing things this way insulates us from concurrent changes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3180
            // in the contents of coll and provides all-or-nothing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3181
            // semantics (which we wouldn't get if we type-checked each
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3182
            // element as we added it)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3183
            return c.addAll(checkedCopyOf(coll));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3184
        }
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  3185
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  3186
        // Override default methods in Collection
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  3187
        @Override
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  3188
        public void forEach(Consumer<? super E> action) {c.forEach(action);}
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  3189
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  3190
        public boolean removeIf(Predicate<? super E> filter) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  3191
            return c.removeIf(filter);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  3192
        }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  3193
        @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  3194
        public Spliterator<E> spliterator() {return c.spliterator();}
19603
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  3195
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  3196
        public Stream<E> stream()           {return c.stream();}
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  3197
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  3198
        public Stream<E> parallelStream()   {return c.parallelStream();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3199
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3200
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3201
    /**
10790
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3202
     * Returns a dynamically typesafe view of the specified queue.
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3203
     * Any attempt to insert an element of the wrong type will result in
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3204
     * an immediate {@link ClassCastException}.  Assuming a queue contains
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3205
     * no incorrectly typed elements prior to the time a dynamically typesafe
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3206
     * view is generated, and that all subsequent access to the queue
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3207
     * takes place through the view, it is <i>guaranteed</i> that the
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3208
     * queue cannot contain an incorrectly typed element.
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3209
     *
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3210
     * <p>A discussion of the use of dynamically typesafe views may be
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3211
     * found in the documentation for the {@link #checkedCollection
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3212
     * checkedCollection} method.
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3213
     *
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3214
     * <p>The returned queue will be serializable if the specified queue
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3215
     * is serializable.
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3216
     *
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3217
     * <p>Since {@code null} is considered to be a value of any reference
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3218
     * type, the returned queue permits insertion of {@code null} elements
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3219
     * whenever the backing queue does.
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3220
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  3221
     * @param <E> the class of the objects in the queue
10790
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3222
     * @param queue the queue for which a dynamically typesafe view is to be
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3223
     *             returned
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3224
     * @param type the type of element that {@code queue} is permitted to hold
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3225
     * @return a dynamically typesafe view of the specified queue
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3226
     * @since 1.8
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3227
     */
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3228
    public static <E> Queue<E> checkedQueue(Queue<E> queue, Class<E> type) {
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3229
        return new CheckedQueue<>(queue, type);
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3230
    }
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3231
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3232
    /**
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3233
     * @serial include
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3234
     */
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3235
    static class CheckedQueue<E>
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3236
        extends CheckedCollection<E>
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3237
        implements Queue<E>, Serializable
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3238
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  3239
        @java.io.Serial
10790
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3240
        private static final long serialVersionUID = 1433151992604707767L;
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  3241
        @SuppressWarnings("serial") // Conditionally serializable
10790
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3242
        final Queue<E> queue;
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3243
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3244
        CheckedQueue(Queue<E> queue, Class<E> elementType) {
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3245
            super(queue, elementType);
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3246
            this.queue = queue;
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3247
        }
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3248
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3249
        public E element()              {return queue.element();}
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3250
        public boolean equals(Object o) {return o == this || c.equals(o);}
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3251
        public int hashCode()           {return c.hashCode();}
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3252
        public E peek()                 {return queue.peek();}
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3253
        public E poll()                 {return queue.poll();}
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3254
        public E remove()               {return queue.remove();}
25177
487a5e71f6dd 8048207: Collections.checkedQueue.offer() calls add on wrapped queue
mduigou
parents: 25171
diff changeset
  3255
        public boolean offer(E e)       {return queue.offer(typeCheck(e));}
10790
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3256
    }
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3257
331fdf9a8824 5029031: Add Collections.checkedQueue()
mduigou
parents: 9503
diff changeset
  3258
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3259
     * Returns a dynamically typesafe view of the specified set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3260
     * Any attempt to insert an element of the wrong type will result in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3261
     * an immediate {@link ClassCastException}.  Assuming a set contains
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3262
     * no incorrectly typed elements prior to the time a dynamically typesafe
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3263
     * view is generated, and that all subsequent access to the set
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3264
     * takes place through the view, it is <i>guaranteed</i> that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3265
     * set cannot contain an incorrectly typed element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3266
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3267
     * <p>A discussion of the use of dynamically typesafe views may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3268
     * found in the documentation for the {@link #checkedCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3269
     * checkedCollection} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3270
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3271
     * <p>The returned set will be serializable if the specified set is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3272
     * serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3273
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3274
     * <p>Since {@code null} is considered to be a value of any reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3275
     * type, the returned set permits insertion of null elements whenever
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3276
     * the backing set does.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3277
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  3278
     * @param <E> the class of the objects in the set
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3279
     * @param s the set for which a dynamically typesafe view is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3280
     *          returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3281
     * @param type the type of element that {@code s} is permitted to hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3282
     * @return a dynamically typesafe view of the specified set
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3283
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3284
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3285
    public static <E> Set<E> checkedSet(Set<E> s, Class<E> type) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  3286
        return new CheckedSet<>(s, type);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3287
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3288
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3289
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3290
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3291
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3292
    static class CheckedSet<E> extends CheckedCollection<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3293
                                 implements Set<E>, Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3294
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  3295
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3296
        private static final long serialVersionUID = 4694047833775013803L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3297
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3298
        CheckedSet(Set<E> s, Class<E> elementType) { super(s, elementType); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3299
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3300
        public boolean equals(Object o) { return o == this || c.equals(o); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3301
        public int hashCode()           { return c.hashCode(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3302
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3303
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3304
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3305
     * Returns a dynamically typesafe view of the specified sorted set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3306
     * Any attempt to insert an element of the wrong type will result in an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3307
     * immediate {@link ClassCastException}.  Assuming a sorted set
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3308
     * contains no incorrectly typed elements prior to the time a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3309
     * dynamically typesafe view is generated, and that all subsequent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3310
     * access to the sorted set takes place through the view, it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3311
     * <i>guaranteed</i> that the sorted set cannot contain an incorrectly
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3312
     * typed element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3313
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3314
     * <p>A discussion of the use of dynamically typesafe views may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3315
     * found in the documentation for the {@link #checkedCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3316
     * checkedCollection} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3317
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3318
     * <p>The returned sorted set will be serializable if the specified sorted
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3319
     * set is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3320
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3321
     * <p>Since {@code null} is considered to be a value of any reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3322
     * type, the returned sorted set permits insertion of null elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3323
     * whenever the backing sorted set does.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3324
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  3325
     * @param <E> the class of the objects in the set
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3326
     * @param s the sorted set for which a dynamically typesafe view is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3327
     *          returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3328
     * @param type the type of element that {@code s} is permitted to hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3329
     * @return a dynamically typesafe view of the specified sorted set
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3330
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3331
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3332
    public static <E> SortedSet<E> checkedSortedSet(SortedSet<E> s,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3333
                                                    Class<E> type) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  3334
        return new CheckedSortedSet<>(s, type);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3335
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3336
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3337
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3338
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3339
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3340
    static class CheckedSortedSet<E> extends CheckedSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3341
        implements SortedSet<E>, Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3342
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  3343
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3344
        private static final long serialVersionUID = 1599911165492914959L;
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3345
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  3346
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3347
        private final SortedSet<E> ss;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3348
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3349
        CheckedSortedSet(SortedSet<E> s, Class<E> type) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3350
            super(s, type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3351
            ss = s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3352
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3353
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3354
        public Comparator<? super E> comparator() { return ss.comparator(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3355
        public E first()                   { return ss.first(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3356
        public E last()                    { return ss.last(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3357
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3358
        public SortedSet<E> subSet(E fromElement, E toElement) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3359
            return checkedSortedSet(ss.subSet(fromElement,toElement), type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3360
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3361
        public SortedSet<E> headSet(E toElement) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3362
            return checkedSortedSet(ss.headSet(toElement), type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3363
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3364
        public SortedSet<E> tailSet(E fromElement) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3365
            return checkedSortedSet(ss.tailSet(fromElement), type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3366
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3367
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3368
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3369
/**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3370
     * Returns a dynamically typesafe view of the specified navigable set.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3371
     * Any attempt to insert an element of the wrong type will result in an
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3372
     * immediate {@link ClassCastException}.  Assuming a navigable set
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3373
     * contains no incorrectly typed elements prior to the time a
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3374
     * dynamically typesafe view is generated, and that all subsequent
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3375
     * access to the navigable set takes place through the view, it is
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3376
     * <em>guaranteed</em> that the navigable set cannot contain an incorrectly
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3377
     * typed element.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3378
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3379
     * <p>A discussion of the use of dynamically typesafe views may be
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3380
     * found in the documentation for the {@link #checkedCollection
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3381
     * checkedCollection} method.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3382
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3383
     * <p>The returned navigable set will be serializable if the specified
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3384
     * navigable set is serializable.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3385
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3386
     * <p>Since {@code null} is considered to be a value of any reference
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3387
     * type, the returned navigable set permits insertion of null elements
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3388
     * whenever the backing sorted set does.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3389
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  3390
     * @param <E> the class of the objects in the set
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3391
     * @param s the navigable set for which a dynamically typesafe view is to be
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3392
     *          returned
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3393
     * @param type the type of element that {@code s} is permitted to hold
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3394
     * @return a dynamically typesafe view of the specified navigable set
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3395
     * @since 1.8
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3396
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3397
    public static <E> NavigableSet<E> checkedNavigableSet(NavigableSet<E> s,
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3398
                                                    Class<E> type) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3399
        return new CheckedNavigableSet<>(s, type);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3400
    }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3401
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3402
    /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3403
     * @serial include
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3404
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3405
    static class CheckedNavigableSet<E> extends CheckedSortedSet<E>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3406
        implements NavigableSet<E>, Serializable
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3407
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  3408
        @java.io.Serial
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3409
        private static final long serialVersionUID = -5429120189805438922L;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3410
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  3411
        @SuppressWarnings("serial") // Conditionally serializable
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3412
        private final NavigableSet<E> ns;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3413
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3414
        CheckedNavigableSet(NavigableSet<E> s, Class<E> type) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3415
            super(s, type);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3416
            ns = s;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3417
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3418
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3419
        public E lower(E e)                             { return ns.lower(e); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3420
        public E floor(E e)                             { return ns.floor(e); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3421
        public E ceiling(E e)                         { return ns.ceiling(e); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3422
        public E higher(E e)                           { return ns.higher(e); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3423
        public E pollFirst()                         { return ns.pollFirst(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3424
        public E pollLast()                            {return ns.pollLast(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3425
        public NavigableSet<E> descendingSet()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3426
                      { return checkedNavigableSet(ns.descendingSet(), type); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3427
        public Iterator<E> descendingIterator()
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3428
            {return checkedNavigableSet(ns.descendingSet(), type).iterator(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3429
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3430
        public NavigableSet<E> subSet(E fromElement, E toElement) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3431
            return checkedNavigableSet(ns.subSet(fromElement, true, toElement, false), type);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3432
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3433
        public NavigableSet<E> headSet(E toElement) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3434
            return checkedNavigableSet(ns.headSet(toElement, false), type);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3435
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3436
        public NavigableSet<E> tailSet(E fromElement) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3437
            return checkedNavigableSet(ns.tailSet(fromElement, true), type);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3438
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3439
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3440
        public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3441
            return checkedNavigableSet(ns.subSet(fromElement, fromInclusive, toElement, toInclusive), type);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3442
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3443
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3444
        public NavigableSet<E> headSet(E toElement, boolean inclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3445
            return checkedNavigableSet(ns.headSet(toElement, inclusive), type);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3446
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3447
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3448
        public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3449
            return checkedNavigableSet(ns.tailSet(fromElement, inclusive), type);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3450
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3451
    }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3452
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3453
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3454
     * Returns a dynamically typesafe view of the specified list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3455
     * Any attempt to insert an element of the wrong type will result in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3456
     * an immediate {@link ClassCastException}.  Assuming a list contains
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3457
     * no incorrectly typed elements prior to the time a dynamically typesafe
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3458
     * view is generated, and that all subsequent access to the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3459
     * takes place through the view, it is <i>guaranteed</i> that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3460
     * list cannot contain an incorrectly typed element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3461
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3462
     * <p>A discussion of the use of dynamically typesafe views may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3463
     * found in the documentation for the {@link #checkedCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3464
     * checkedCollection} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3465
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3466
     * <p>The returned list will be serializable if the specified list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3467
     * is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3468
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3469
     * <p>Since {@code null} is considered to be a value of any reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3470
     * type, the returned list permits insertion of null elements whenever
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3471
     * the backing list does.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3472
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  3473
     * @param <E> the class of the objects in the list
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3474
     * @param list the list for which a dynamically typesafe view is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3475
     *             returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3476
     * @param type the type of element that {@code list} is permitted to hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3477
     * @return a dynamically typesafe view of the specified list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3478
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3479
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3480
    public static <E> List<E> checkedList(List<E> list, Class<E> type) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3481
        return (list instanceof RandomAccess ?
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  3482
                new CheckedRandomAccessList<>(list, type) :
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  3483
                new CheckedList<>(list, type));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3484
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3485
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3486
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3487
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3488
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3489
    static class CheckedList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3490
        extends CheckedCollection<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3491
        implements List<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3492
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  3493
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3494
        private static final long serialVersionUID = 65247728283967356L;
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  3495
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3496
        final List<E> list;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3497
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3498
        CheckedList(List<E> list, Class<E> type) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3499
            super(list, type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3500
            this.list = list;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3501
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3502
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3503
        public boolean equals(Object o)  { return o == this || list.equals(o); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3504
        public int hashCode()            { return list.hashCode(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3505
        public E get(int index)          { return list.get(index); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3506
        public E remove(int index)       { return list.remove(index); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3507
        public int indexOf(Object o)     { return list.indexOf(o); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3508
        public int lastIndexOf(Object o) { return list.lastIndexOf(o); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3509
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3510
        public E set(int index, E element) {
25177
487a5e71f6dd 8048207: Collections.checkedQueue.offer() calls add on wrapped queue
mduigou
parents: 25171
diff changeset
  3511
            return list.set(index, typeCheck(element));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3512
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3513
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3514
        public void add(int index, E element) {
25177
487a5e71f6dd 8048207: Collections.checkedQueue.offer() calls add on wrapped queue
mduigou
parents: 25171
diff changeset
  3515
            list.add(index, typeCheck(element));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3516
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3517
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3518
        public boolean addAll(int index, Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3519
            return list.addAll(index, checkedCopyOf(c));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3520
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3521
        public ListIterator<E> listIterator()   { return listIterator(0); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3522
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3523
        public ListIterator<E> listIterator(final int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3524
            final ListIterator<E> i = list.listIterator(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3525
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3526
            return new ListIterator<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3527
                public boolean hasNext()     { return i.hasNext(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3528
                public E next()              { return i.next(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3529
                public boolean hasPrevious() { return i.hasPrevious(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3530
                public E previous()          { return i.previous(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3531
                public int nextIndex()       { return i.nextIndex(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3532
                public int previousIndex()   { return i.previousIndex(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3533
                public void remove()         {        i.remove(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3534
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3535
                public void set(E e) {
25177
487a5e71f6dd 8048207: Collections.checkedQueue.offer() calls add on wrapped queue
mduigou
parents: 25171
diff changeset
  3536
                    i.set(typeCheck(e));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3537
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3538
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3539
                public void add(E e) {
25177
487a5e71f6dd 8048207: Collections.checkedQueue.offer() calls add on wrapped queue
mduigou
parents: 25171
diff changeset
  3540
                    i.add(typeCheck(e));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3541
                }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  3542
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  3543
                @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  3544
                public void forEachRemaining(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  3545
                    i.forEachRemaining(action);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  3546
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3547
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3548
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3549
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3550
        public List<E> subList(int fromIndex, int toIndex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  3551
            return new CheckedList<>(list.subList(fromIndex, toIndex), type);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3552
        }
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  3553
25171
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3554
        /**
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3555
         * {@inheritDoc}
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3556
         *
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3557
         * @throws ClassCastException if the class of an element returned by the
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3558
         *         operator prevents it from being added to this collection. The
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3559
         *         exception may be thrown after some elements of the list have
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3560
         *         already been replaced.
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3561
         */
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  3562
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  3563
        public void replaceAll(UnaryOperator<E> operator) {
25796
c6b97b1f9fee 8053938: Collections.checkedList(empty list).replaceAll((UnaryOperator)null) doesn't throw NPE after JDK-8047795
chegar
parents: 25748
diff changeset
  3564
            Objects.requireNonNull(operator);
25171
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3565
            list.replaceAll(e -> typeCheck(operator.apply(e)));
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3566
        }
5dd99a9e443b 8047795: Collections.checkedList checking bypassed by List.replaceAll
mduigou
parents: 23746
diff changeset
  3567
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  3568
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  3569
        public void sort(Comparator<? super E> c) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  3570
            list.sort(c);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  3571
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3572
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3573
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3574
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3575
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3576
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3577
    static class CheckedRandomAccessList<E> extends CheckedList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3578
                                            implements RandomAccess
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3579
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  3580
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3581
        private static final long serialVersionUID = 1638200125423088369L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3582
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3583
        CheckedRandomAccessList(List<E> list, Class<E> type) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3584
            super(list, type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3585
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3586
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3587
        public List<E> subList(int fromIndex, int toIndex) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  3588
            return new CheckedRandomAccessList<>(
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3589
                    list.subList(fromIndex, toIndex), type);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3590
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3591
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3592
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3593
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3594
     * Returns a dynamically typesafe view of the specified map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3595
     * Any attempt to insert a mapping whose key or value have the wrong
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3596
     * type will result in an immediate {@link ClassCastException}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3597
     * Similarly, any attempt to modify the value currently associated with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3598
     * a key will result in an immediate {@link ClassCastException},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3599
     * whether the modification is attempted directly through the map
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3600
     * itself, or through a {@link Map.Entry} instance obtained from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3601
     * map's {@link Map#entrySet() entry set} view.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3602
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3603
     * <p>Assuming a map contains no incorrectly typed keys or values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3604
     * prior to the time a dynamically typesafe view is generated, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3605
     * that all subsequent access to the map takes place through the view
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3606
     * (or one of its collection views), it is <i>guaranteed</i> that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3607
     * map cannot contain an incorrectly typed key or value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3608
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3609
     * <p>A discussion of the use of dynamically typesafe views may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3610
     * found in the documentation for the {@link #checkedCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3611
     * checkedCollection} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3612
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3613
     * <p>The returned map will be serializable if the specified map is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3614
     * serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3615
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3616
     * <p>Since {@code null} is considered to be a value of any reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3617
     * type, the returned map permits insertion of null keys or values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3618
     * whenever the backing map does.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3619
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  3620
     * @param <K> the class of the map keys
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  3621
     * @param <V> the class of the map values
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3622
     * @param m the map for which a dynamically typesafe view is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3623
     *          returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3624
     * @param keyType the type of key that {@code m} is permitted to hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3625
     * @param valueType the type of value that {@code m} is permitted to hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3626
     * @return a dynamically typesafe view of the specified map
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3627
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3628
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3629
    public static <K, V> Map<K, V> checkedMap(Map<K, V> m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3630
                                              Class<K> keyType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3631
                                              Class<V> valueType) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  3632
        return new CheckedMap<>(m, keyType, valueType);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3633
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3634
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3635
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3636
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3637
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3638
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3639
    private static class CheckedMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3640
        implements Map<K,V>, Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3641
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  3642
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3643
        private static final long serialVersionUID = 5742860141034234728L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3644
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  3645
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3646
        private final Map<K, V> m;
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  3647
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3648
        final Class<K> keyType;
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  3649
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3650
        final Class<V> valueType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3651
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3652
        private void typeCheck(Object key, Object value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3653
            if (key != null && !keyType.isInstance(key))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3654
                throw new ClassCastException(badKeyMsg(key));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3655
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3656
            if (value != null && !valueType.isInstance(value))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3657
                throw new ClassCastException(badValueMsg(value));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3658
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3659
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3660
        private BiFunction<? super K, ? super V, ? extends V> typeCheck(
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3661
                BiFunction<? super K, ? super V, ? extends V> func) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3662
            Objects.requireNonNull(func);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3663
            return (k, v) -> {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3664
                V newValue = func.apply(k, v);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3665
                typeCheck(k, newValue);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3666
                return newValue;
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3667
            };
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3668
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3669
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3670
        private String badKeyMsg(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3671
            return "Attempt to insert " + key.getClass() +
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3672
                    " key into map with key type " + keyType;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3673
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3674
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3675
        private String badValueMsg(Object value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3676
            return "Attempt to insert " + value.getClass() +
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3677
                    " value into map with value type " + valueType;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3678
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3679
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3680
        CheckedMap(Map<K, V> m, Class<K> keyType, Class<V> valueType) {
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3681
            this.m = Objects.requireNonNull(m);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3682
            this.keyType = Objects.requireNonNull(keyType);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3683
            this.valueType = Objects.requireNonNull(valueType);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3684
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3685
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3686
        public int size()                      { return m.size(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3687
        public boolean isEmpty()               { return m.isEmpty(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3688
        public boolean containsKey(Object key) { return m.containsKey(key); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3689
        public boolean containsValue(Object v) { return m.containsValue(v); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3690
        public V get(Object key)               { return m.get(key); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3691
        public V remove(Object key)            { return m.remove(key); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3692
        public void clear()                    { m.clear(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3693
        public Set<K> keySet()                 { return m.keySet(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3694
        public Collection<V> values()          { return m.values(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3695
        public boolean equals(Object o)        { return o == this || m.equals(o); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3696
        public int hashCode()                  { return m.hashCode(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3697
        public String toString()               { return m.toString(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3698
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3699
        public V put(K key, V value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3700
            typeCheck(key, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3701
            return m.put(key, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3702
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3703
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3704
        @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3705
        public void putAll(Map<? extends K, ? extends V> t) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3706
            // Satisfy the following goals:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3707
            // - good diagnostics in case of type mismatch
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3708
            // - all-or-nothing semantics
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3709
            // - protection from malicious t
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3710
            // - correct behavior if t is a concurrent map
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3711
            Object[] entries = t.entrySet().toArray();
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  3712
            List<Map.Entry<K,V>> checked = new ArrayList<>(entries.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3713
            for (Object o : entries) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3714
                Map.Entry<?,?> e = (Map.Entry<?,?>) o;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3715
                Object k = e.getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3716
                Object v = e.getValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3717
                typeCheck(k, v);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3718
                checked.add(
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3719
                        new AbstractMap.SimpleImmutableEntry<>((K)k, (V)v));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3720
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3721
            for (Map.Entry<K,V> e : checked)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3722
                m.put(e.getKey(), e.getValue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3723
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3724
23746
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22285
diff changeset
  3725
        private transient Set<Map.Entry<K,V>> entrySet;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3726
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3727
        public Set<Map.Entry<K,V>> entrySet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3728
            if (entrySet==null)
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  3729
                entrySet = new CheckedEntrySet<>(m.entrySet(), valueType);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3730
            return entrySet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3731
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3732
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3733
        // Override default methods in Map
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3734
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3735
        public void forEach(BiConsumer<? super K, ? super V> action) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3736
            m.forEach(action);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3737
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3738
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3739
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3740
        public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3741
            m.replaceAll(typeCheck(function));
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3742
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3743
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3744
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3745
        public V putIfAbsent(K key, V value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3746
            typeCheck(key, value);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3747
            return m.putIfAbsent(key, value);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3748
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3749
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3750
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3751
        public boolean remove(Object key, Object value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3752
            return m.remove(key, value);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3753
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3754
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3755
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3756
        public boolean replace(K key, V oldValue, V newValue) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3757
            typeCheck(key, newValue);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3758
            return m.replace(key, oldValue, newValue);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3759
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3760
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3761
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3762
        public V replace(K key, V value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3763
            typeCheck(key, value);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3764
            return m.replace(key, value);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3765
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3766
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3767
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3768
        public V computeIfAbsent(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3769
                Function<? super K, ? extends V> mappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3770
            Objects.requireNonNull(mappingFunction);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3771
            return m.computeIfAbsent(key, k -> {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3772
                V value = mappingFunction.apply(k);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3773
                typeCheck(k, value);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3774
                return value;
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3775
            });
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3776
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3777
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3778
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3779
        public V computeIfPresent(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3780
                BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3781
            return m.computeIfPresent(key, typeCheck(remappingFunction));
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3782
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3783
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3784
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3785
        public V compute(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3786
                BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3787
            return m.compute(key, typeCheck(remappingFunction));
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3788
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3789
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3790
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3791
        public V merge(K key, V value,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3792
                BiFunction<? super V, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3793
            Objects.requireNonNull(remappingFunction);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3794
            return m.merge(key, value, (v1, v2) -> {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3795
                V newValue = remappingFunction.apply(v1, v2);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3796
                typeCheck(null, newValue);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3797
                return newValue;
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3798
            });
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3799
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  3800
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3801
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3802
         * We need this class in addition to CheckedSet as Map.Entry permits
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3803
         * modification of the backing Map via the setValue operation.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3804
         * class is subtle: there are many possible attacks that must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3805
         * thwarted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3806
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3807
         * @serial exclude
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3808
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3809
        static class CheckedEntrySet<K,V> implements Set<Map.Entry<K,V>> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3810
            private final Set<Map.Entry<K,V>> s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3811
            private final Class<V> valueType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3812
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3813
            CheckedEntrySet(Set<Map.Entry<K, V>> s, Class<V> valueType) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3814
                this.s = s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3815
                this.valueType = valueType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3816
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3817
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3818
            public int size()        { return s.size(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3819
            public boolean isEmpty() { return s.isEmpty(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3820
            public String toString() { return s.toString(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3821
            public int hashCode()    { return s.hashCode(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3822
            public void clear()      {        s.clear(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3823
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3824
            public boolean add(Map.Entry<K, V> e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3825
                throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3826
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3827
            public boolean addAll(Collection<? extends Map.Entry<K, V>> coll) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3828
                throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3829
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3830
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3831
            public Iterator<Map.Entry<K,V>> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3832
                final Iterator<Map.Entry<K, V>> i = s.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3833
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3834
                return new Iterator<Map.Entry<K,V>>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3835
                    public boolean hasNext() { return i.hasNext(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3836
                    public void remove()     { i.remove(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3837
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3838
                    public Map.Entry<K,V> next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3839
                        return checkedEntry(i.next(), valueType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3840
                    }
50775
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  3841
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  3842
                    public void forEachRemaining(Consumer<? super Entry<K, V>> action) {
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  3843
                        i.forEachRemaining(
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  3844
                            e -> action.accept(checkedEntry(e, valueType)));
afbcf72c389d 8205184: Delegating Iterator implementations that don't delegate forEachRemaining()
martin
parents: 50697
diff changeset
  3845
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3846
                };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3847
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3848
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3849
            @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3850
            public Object[] toArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3851
                Object[] source = s.toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3852
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3853
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3854
                 * Ensure that we don't get an ArrayStoreException even if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3855
                 * s.toArray returns an array of something other than Object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3856
                 */
48899
e9676e9ca3d6 8197893: Mistaken type check in CheckedEntrySet.toArray
martin
parents: 48249
diff changeset
  3857
                Object[] dest = (source.getClass() == Object[].class)
e9676e9ca3d6 8197893: Mistaken type check in CheckedEntrySet.toArray
martin
parents: 48249
diff changeset
  3858
                    ? source
e9676e9ca3d6 8197893: Mistaken type check in CheckedEntrySet.toArray
martin
parents: 48249
diff changeset
  3859
                    : new Object[source.length];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3860
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3861
                for (int i = 0; i < source.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3862
                    dest[i] = checkedEntry((Map.Entry<K,V>)source[i],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3863
                                           valueType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3864
                return dest;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3865
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3866
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3867
            @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3868
            public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3869
                // We don't pass a to s.toArray, to avoid window of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3870
                // vulnerability wherein an unscrupulous multithreaded client
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3871
                // could get his hands on raw (unwrapped) Entries from s.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3872
                T[] arr = s.toArray(a.length==0 ? a : Arrays.copyOf(a, 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3873
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3874
                for (int i=0; i<arr.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3875
                    arr[i] = (T) checkedEntry((Map.Entry<K,V>)arr[i],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3876
                                              valueType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3877
                if (arr.length > a.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3878
                    return arr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3879
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3880
                System.arraycopy(arr, 0, a, 0, arr.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3881
                if (a.length > arr.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3882
                    a[arr.length] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3883
                return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3884
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3885
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3886
            /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3887
             * This method is overridden to protect the backing set against
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3888
             * an object with a nefarious equals function that senses
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3889
             * that the equality-candidate is Map.Entry and calls its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3890
             * setValue method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3891
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3892
            public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3893
                if (!(o instanceof Map.Entry))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3894
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3895
                Map.Entry<?,?> e = (Map.Entry<?,?>) o;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3896
                return s.contains(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3897
                    (e instanceof CheckedEntry) ? e : checkedEntry(e, valueType));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3898
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3899
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3900
            /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3901
             * The bulk collection methods are overridden to protect
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3902
             * against an unscrupulous collection whose contains(Object o)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3903
             * method senses when o is a Map.Entry, and calls o.setValue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3904
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3905
            public boolean containsAll(Collection<?> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3906
                for (Object o : c)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3907
                    if (!contains(o)) // Invokes safe contains() above
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3908
                        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3909
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3910
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3911
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3912
            public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3913
                if (!(o instanceof Map.Entry))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3914
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3915
                return s.remove(new AbstractMap.SimpleImmutableEntry
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  3916
                                <>((Map.Entry<?,?>)o));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3917
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3918
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3919
            public boolean removeAll(Collection<?> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3920
                return batchRemove(c, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3921
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3922
            public boolean retainAll(Collection<?> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3923
                return batchRemove(c, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3924
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3925
            private boolean batchRemove(Collection<?> c, boolean complement) {
19855
bfe130545fe0 8021591: Additional explicit null checks
mduigou
parents: 19603
diff changeset
  3926
                Objects.requireNonNull(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3927
                boolean modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3928
                Iterator<Map.Entry<K,V>> it = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3929
                while (it.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3930
                    if (c.contains(it.next()) != complement) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3931
                        it.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3932
                        modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3933
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3934
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3935
                return modified;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3936
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3937
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3938
            public boolean equals(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3939
                if (o == this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3940
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3941
                if (!(o instanceof Set))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3942
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3943
                Set<?> that = (Set<?>) o;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3944
                return that.size() == s.size()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3945
                    && containsAll(that); // Invokes safe containsAll() above
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3946
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3947
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3948
            static <K,V,T> CheckedEntry<K,V,T> checkedEntry(Map.Entry<K,V> e,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3949
                                                            Class<T> valueType) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  3950
                return new CheckedEntry<>(e, valueType);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3951
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3952
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3953
            /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3954
             * This "wrapper class" serves two purposes: it prevents
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3955
             * the client from modifying the backing Map, by short-circuiting
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3956
             * the setValue method, and it protects the backing Map against
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3957
             * an ill-behaved Map.Entry that attempts to modify another
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3958
             * Map.Entry when asked to perform an equality check.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3959
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3960
            private static class CheckedEntry<K,V,T> implements Map.Entry<K,V> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3961
                private final Map.Entry<K, V> e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3962
                private final Class<T> valueType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3963
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3964
                CheckedEntry(Map.Entry<K, V> e, Class<T> valueType) {
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3965
                    this.e = Objects.requireNonNull(e);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  3966
                    this.valueType = Objects.requireNonNull(valueType);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3967
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3968
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3969
                public K getKey()        { return e.getKey(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3970
                public V getValue()      { return e.getValue(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3971
                public int hashCode()    { return e.hashCode(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3972
                public String toString() { return e.toString(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3973
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3974
                public V setValue(V value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3975
                    if (value != null && !valueType.isInstance(value))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3976
                        throw new ClassCastException(badValueMsg(value));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3977
                    return e.setValue(value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3978
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3979
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3980
                private String badValueMsg(Object value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3981
                    return "Attempt to insert " + value.getClass() +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3982
                        " value into map with value type " + valueType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3983
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3984
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3985
                public boolean equals(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3986
                    if (o == this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3987
                        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3988
                    if (!(o instanceof Map.Entry))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3989
                        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3990
                    return e.equals(new AbstractMap.SimpleImmutableEntry
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  3991
                                    <>((Map.Entry<?,?>)o));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3992
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3993
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3994
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3995
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3996
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3997
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3998
     * Returns a dynamically typesafe view of the specified sorted map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3999
     * Any attempt to insert a mapping whose key or value have the wrong
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4000
     * type will result in an immediate {@link ClassCastException}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4001
     * Similarly, any attempt to modify the value currently associated with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4002
     * a key will result in an immediate {@link ClassCastException},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4003
     * whether the modification is attempted directly through the map
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4004
     * itself, or through a {@link Map.Entry} instance obtained from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4005
     * map's {@link Map#entrySet() entry set} view.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4006
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4007
     * <p>Assuming a map contains no incorrectly typed keys or values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4008
     * prior to the time a dynamically typesafe view is generated, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4009
     * that all subsequent access to the map takes place through the view
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4010
     * (or one of its collection views), it is <i>guaranteed</i> that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4011
     * map cannot contain an incorrectly typed key or value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4012
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4013
     * <p>A discussion of the use of dynamically typesafe views may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4014
     * found in the documentation for the {@link #checkedCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4015
     * checkedCollection} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4016
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4017
     * <p>The returned map will be serializable if the specified map is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4018
     * serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4019
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4020
     * <p>Since {@code null} is considered to be a value of any reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4021
     * type, the returned map permits insertion of null keys or values
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4022
     * whenever the backing map does.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4023
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4024
     * @param <K> the class of the map keys
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4025
     * @param <V> the class of the map values
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4026
     * @param m the map for which a dynamically typesafe view is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4027
     *          returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4028
     * @param keyType the type of key that {@code m} is permitted to hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4029
     * @param valueType the type of value that {@code m} is permitted to hold
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4030
     * @return a dynamically typesafe view of the specified map
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4031
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4032
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4033
    public static <K,V> SortedMap<K,V> checkedSortedMap(SortedMap<K, V> m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4034
                                                        Class<K> keyType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4035
                                                        Class<V> valueType) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  4036
        return new CheckedSortedMap<>(m, keyType, valueType);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4037
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4038
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4039
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4040
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4041
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4042
    static class CheckedSortedMap<K,V> extends CheckedMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4043
        implements SortedMap<K,V>, Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4044
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  4045
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4046
        private static final long serialVersionUID = 1599671320688067438L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4047
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  4048
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4049
        private final SortedMap<K, V> sm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4050
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4051
        CheckedSortedMap(SortedMap<K, V> m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4052
                         Class<K> keyType, Class<V> valueType) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4053
            super(m, keyType, valueType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4054
            sm = m;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4055
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4056
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4057
        public Comparator<? super K> comparator() { return sm.comparator(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4058
        public K firstKey()                       { return sm.firstKey(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4059
        public K lastKey()                        { return sm.lastKey(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4060
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4061
        public SortedMap<K,V> subMap(K fromKey, K toKey) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4062
            return checkedSortedMap(sm.subMap(fromKey, toKey),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4063
                                    keyType, valueType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4064
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4065
        public SortedMap<K,V> headMap(K toKey) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4066
            return checkedSortedMap(sm.headMap(toKey), keyType, valueType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4067
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4068
        public SortedMap<K,V> tailMap(K fromKey) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4069
            return checkedSortedMap(sm.tailMap(fromKey), keyType, valueType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4070
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4071
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4072
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4073
    /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4074
     * Returns a dynamically typesafe view of the specified navigable map.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4075
     * Any attempt to insert a mapping whose key or value have the wrong
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4076
     * type will result in an immediate {@link ClassCastException}.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4077
     * Similarly, any attempt to modify the value currently associated with
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4078
     * a key will result in an immediate {@link ClassCastException},
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4079
     * whether the modification is attempted directly through the map
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4080
     * itself, or through a {@link Map.Entry} instance obtained from the
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4081
     * map's {@link Map#entrySet() entry set} view.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4082
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4083
     * <p>Assuming a map contains no incorrectly typed keys or values
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4084
     * prior to the time a dynamically typesafe view is generated, and
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4085
     * that all subsequent access to the map takes place through the view
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4086
     * (or one of its collection views), it is <em>guaranteed</em> that the
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4087
     * map cannot contain an incorrectly typed key or value.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4088
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4089
     * <p>A discussion of the use of dynamically typesafe views may be
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4090
     * found in the documentation for the {@link #checkedCollection
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4091
     * checkedCollection} method.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4092
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4093
     * <p>The returned map will be serializable if the specified map is
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4094
     * serializable.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4095
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4096
     * <p>Since {@code null} is considered to be a value of any reference
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4097
     * type, the returned map permits insertion of null keys or values
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4098
     * whenever the backing map does.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4099
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4100
     * @param <K> type of map keys
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4101
     * @param <V> type of map values
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4102
     * @param m the map for which a dynamically typesafe view is to be
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4103
     *          returned
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4104
     * @param keyType the type of key that {@code m} is permitted to hold
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4105
     * @param valueType the type of value that {@code m} is permitted to hold
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4106
     * @return a dynamically typesafe view of the specified map
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4107
     * @since 1.8
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4108
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4109
    public static <K,V> NavigableMap<K,V> checkedNavigableMap(NavigableMap<K, V> m,
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4110
                                                        Class<K> keyType,
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4111
                                                        Class<V> valueType) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4112
        return new CheckedNavigableMap<>(m, keyType, valueType);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4113
    }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4114
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4115
    /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4116
     * @serial include
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4117
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4118
    static class CheckedNavigableMap<K,V> extends CheckedSortedMap<K,V>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4119
        implements NavigableMap<K,V>, Serializable
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4120
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  4121
        @java.io.Serial
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4122
        private static final long serialVersionUID = -4852462692372534096L;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4123
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  4124
        @SuppressWarnings("serial") // Conditionally serializable
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4125
        private final NavigableMap<K, V> nm;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4126
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4127
        CheckedNavigableMap(NavigableMap<K, V> m,
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4128
                         Class<K> keyType, Class<V> valueType) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4129
            super(m, keyType, valueType);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4130
            nm = m;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4131
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4132
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4133
        public Comparator<? super K> comparator()   { return nm.comparator(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4134
        public K firstKey()                           { return nm.firstKey(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4135
        public K lastKey()                             { return nm.lastKey(); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4136
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4137
        public Entry<K, V> lowerEntry(K key) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4138
            Entry<K,V> lower = nm.lowerEntry(key);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4139
            return (null != lower)
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  4140
                ? new CheckedMap.CheckedEntrySet.CheckedEntry<>(lower, valueType)
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4141
                : null;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4142
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4143
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4144
        public K lowerKey(K key)                   { return nm.lowerKey(key); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4145
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4146
        public Entry<K, V> floorEntry(K key) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4147
            Entry<K,V> floor = nm.floorEntry(key);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4148
            return (null != floor)
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  4149
                ? new CheckedMap.CheckedEntrySet.CheckedEntry<>(floor, valueType)
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4150
                : null;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4151
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4152
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4153
        public K floorKey(K key)                   { return nm.floorKey(key); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4154
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4155
        public Entry<K, V> ceilingEntry(K key) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4156
            Entry<K,V> ceiling = nm.ceilingEntry(key);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4157
            return (null != ceiling)
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  4158
                ? new CheckedMap.CheckedEntrySet.CheckedEntry<>(ceiling, valueType)
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4159
                : null;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4160
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4161
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4162
        public K ceilingKey(K key)               { return nm.ceilingKey(key); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4163
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4164
        public Entry<K, V> higherEntry(K key) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4165
            Entry<K,V> higher = nm.higherEntry(key);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4166
            return (null != higher)
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  4167
                ? new CheckedMap.CheckedEntrySet.CheckedEntry<>(higher, valueType)
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4168
                : null;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4169
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4170
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4171
        public K higherKey(K key)                 { return nm.higherKey(key); }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4172
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4173
        public Entry<K, V> firstEntry() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4174
            Entry<K,V> first = nm.firstEntry();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4175
            return (null != first)
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  4176
                ? new CheckedMap.CheckedEntrySet.CheckedEntry<>(first, valueType)
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4177
                : null;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4178
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4179
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4180
        public Entry<K, V> lastEntry() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4181
            Entry<K,V> last = nm.lastEntry();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4182
            return (null != last)
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  4183
                ? new CheckedMap.CheckedEntrySet.CheckedEntry<>(last, valueType)
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4184
                : null;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4185
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4186
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4187
        public Entry<K, V> pollFirstEntry() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4188
            Entry<K,V> entry = nm.pollFirstEntry();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4189
            return (null == entry)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4190
                ? null
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  4191
                : new CheckedMap.CheckedEntrySet.CheckedEntry<>(entry, valueType);
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4192
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4193
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4194
        public Entry<K, V> pollLastEntry() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4195
            Entry<K,V> entry = nm.pollLastEntry();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4196
            return (null == entry)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4197
                ? null
19208
1e3d351eba80 8022412: Fixed warnings in java.util root, except for HashMap
lagergren
parents: 18829
diff changeset
  4198
                : new CheckedMap.CheckedEntrySet.CheckedEntry<>(entry, valueType);
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4199
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4200
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4201
        public NavigableMap<K, V> descendingMap() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4202
            return checkedNavigableMap(nm.descendingMap(), keyType, valueType);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4203
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4204
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4205
        public NavigableSet<K> keySet() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4206
            return navigableKeySet();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4207
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4208
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4209
        public NavigableSet<K> navigableKeySet() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4210
            return checkedNavigableSet(nm.navigableKeySet(), keyType);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4211
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4212
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4213
        public NavigableSet<K> descendingKeySet() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4214
            return checkedNavigableSet(nm.descendingKeySet(), keyType);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4215
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4216
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4217
        @Override
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4218
        public NavigableMap<K,V> subMap(K fromKey, K toKey) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4219
            return checkedNavigableMap(nm.subMap(fromKey, true, toKey, false),
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4220
                                    keyType, valueType);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4221
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4222
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4223
        @Override
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4224
        public NavigableMap<K,V> headMap(K toKey) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4225
            return checkedNavigableMap(nm.headMap(toKey, false), keyType, valueType);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4226
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4227
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4228
        @Override
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4229
        public NavigableMap<K,V> tailMap(K fromKey) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4230
            return checkedNavigableMap(nm.tailMap(fromKey, true), keyType, valueType);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4231
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4232
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4233
        public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4234
            return checkedNavigableMap(nm.subMap(fromKey, fromInclusive, toKey, toInclusive), keyType, valueType);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4235
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4236
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4237
        public NavigableMap<K, V> headMap(K toKey, boolean inclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4238
            return checkedNavigableMap(nm.headMap(toKey, inclusive), keyType, valueType);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4239
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4240
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4241
        public NavigableMap<K, V> tailMap(K fromKey, boolean inclusive) {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4242
            return checkedNavigableMap(nm.tailMap(fromKey, inclusive), keyType, valueType);
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4243
        }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4244
    }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4245
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4246
    // Empty collections
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4247
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4248
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4249
     * Returns an iterator that has no elements.  More precisely,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4250
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4251
     * <ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4252
     * <li>{@link Iterator#hasNext hasNext} always returns {@code
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4253
     * false}.</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4254
     * <li>{@link Iterator#next next} always throws {@link
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4255
     * NoSuchElementException}.</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4256
     * <li>{@link Iterator#remove remove} always throws {@link
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4257
     * IllegalStateException}.</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4258
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4259
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4260
     * <p>Implementations of this method are permitted, but not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4261
     * required, to return the same object from multiple invocations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4262
     *
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4263
     * @param <T> type of elements, if there were any, in the iterator
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4264
     * @return an empty iterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4265
     * @since 1.7
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4266
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4267
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4268
    public static <T> Iterator<T> emptyIterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4269
        return (Iterator<T>) EmptyIterator.EMPTY_ITERATOR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4270
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4271
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4272
    private static class EmptyIterator<E> implements Iterator<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4273
        static final EmptyIterator<Object> EMPTY_ITERATOR
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  4274
            = new EmptyIterator<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4275
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4276
        public boolean hasNext() { return false; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4277
        public E next() { throw new NoSuchElementException(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4278
        public void remove() { throw new IllegalStateException(); }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4279
        @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4280
        public void forEachRemaining(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4281
            Objects.requireNonNull(action);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4282
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4283
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4284
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4285
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4286
     * Returns a list iterator that has no elements.  More precisely,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4287
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4288
     * <ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4289
     * <li>{@link Iterator#hasNext hasNext} and {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4290
     * ListIterator#hasPrevious hasPrevious} always return {@code
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4291
     * false}.</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4292
     * <li>{@link Iterator#next next} and {@link ListIterator#previous
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4293
     * previous} always throw {@link NoSuchElementException}.</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4294
     * <li>{@link Iterator#remove remove} and {@link ListIterator#set
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4295
     * set} always throw {@link IllegalStateException}.</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4296
     * <li>{@link ListIterator#add add} always throws {@link
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4297
     * UnsupportedOperationException}.</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4298
     * <li>{@link ListIterator#nextIndex nextIndex} always returns
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4299
     * {@code 0}.</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4300
     * <li>{@link ListIterator#previousIndex previousIndex} always
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4301
     * returns {@code -1}.</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4302
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4303
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4304
     * <p>Implementations of this method are permitted, but not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4305
     * required, to return the same object from multiple invocations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4306
     *
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4307
     * @param <T> type of elements, if there were any, in the iterator
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4308
     * @return an empty list iterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4309
     * @since 1.7
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4310
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4311
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4312
    public static <T> ListIterator<T> emptyListIterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4313
        return (ListIterator<T>) EmptyListIterator.EMPTY_ITERATOR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4314
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4315
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4316
    private static class EmptyListIterator<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4317
        extends EmptyIterator<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4318
        implements ListIterator<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4319
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4320
        static final EmptyListIterator<Object> EMPTY_ITERATOR
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  4321
            = new EmptyListIterator<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4322
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4323
        public boolean hasPrevious() { return false; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4324
        public E previous() { throw new NoSuchElementException(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4325
        public int nextIndex()     { return 0; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4326
        public int previousIndex() { return -1; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4327
        public void set(E e) { throw new IllegalStateException(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4328
        public void add(E e) { throw new UnsupportedOperationException(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4329
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4330
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4331
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4332
     * Returns an enumeration that has no elements.  More precisely,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4333
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4334
     * <ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4335
     * <li>{@link Enumeration#hasMoreElements hasMoreElements} always
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4336
     * returns {@code false}.</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4337
     * <li> {@link Enumeration#nextElement nextElement} always throws
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4338
     * {@link NoSuchElementException}.</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4339
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4340
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4341
     * <p>Implementations of this method are permitted, but not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4342
     * required, to return the same object from multiple invocations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4343
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4344
     * @param  <T> the class of the objects in the enumeration
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4345
     * @return an empty enumeration
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4346
     * @since 1.7
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4347
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4348
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4349
    public static <T> Enumeration<T> emptyEnumeration() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4350
        return (Enumeration<T>) EmptyEnumeration.EMPTY_ENUMERATION;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4351
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4352
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4353
    private static class EmptyEnumeration<E> implements Enumeration<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4354
        static final EmptyEnumeration<Object> EMPTY_ENUMERATION
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  4355
            = new EmptyEnumeration<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4356
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4357
        public boolean hasMoreElements() { return false; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4358
        public E nextElement() { throw new NoSuchElementException(); }
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 25859
diff changeset
  4359
        public Iterator<E> asIterator() { return emptyIterator(); }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4360
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4361
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4362
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4363
     * The empty set (immutable).  This set is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4364
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4365
     * @see #emptySet()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4366
     */
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 12448
diff changeset
  4367
    @SuppressWarnings("rawtypes")
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  4368
    public static final Set EMPTY_SET = new EmptySet<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4369
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4370
    /**
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4371
     * Returns an empty set (immutable).  This set is serializable.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4372
     * Unlike the like-named field, this method is parameterized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4373
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4374
     * <p>This example illustrates the type-safe way to obtain an empty set:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4375
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4376
     *     Set&lt;String&gt; s = Collections.emptySet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4377
     * </pre>
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4378
     * @implNote Implementations of this method need not create a separate
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4379
     * {@code Set} object for each call.  Using this method is likely to have
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4380
     * comparable cost to using the like-named field.  (Unlike this method, the
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4381
     * field does not provide type safety.)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4382
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4383
     * @param  <T> the class of the objects in the set
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4384
     * @return the empty set
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4385
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4386
     * @see #EMPTY_SET
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4387
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4388
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4389
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4390
    public static final <T> Set<T> emptySet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4391
        return (Set<T>) EMPTY_SET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4392
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4393
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4394
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4395
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4396
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4397
    private static class EmptySet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4398
        extends AbstractSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4399
        implements Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4400
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  4401
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4402
        private static final long serialVersionUID = 1582296315990362920L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4403
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4404
        public Iterator<E> iterator() { return emptyIterator(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4405
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4406
        public int size() {return 0;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4407
        public boolean isEmpty() {return true;}
39059
a51b9d78b20c 8158253: Collections: Implement a noop clear() for EmptyList, EmptyMap and EmptySet
psandoz
parents: 36436
diff changeset
  4408
        public void clear() {}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4409
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4410
        public boolean contains(Object obj) {return false;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4411
        public boolean containsAll(Collection<?> c) { return c.isEmpty(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4412
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4413
        public Object[] toArray() { return new Object[0]; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4414
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4415
        public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4416
            if (a.length > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4417
                a[0] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4418
            return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4419
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4420
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4421
        // Override default methods in Collection
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4422
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4423
        public void forEach(Consumer<? super E> action) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4424
            Objects.requireNonNull(action);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4425
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4426
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4427
        public boolean removeIf(Predicate<? super E> filter) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4428
            Objects.requireNonNull(filter);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4429
            return false;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4430
        }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4431
        @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4432
        public Spliterator<E> spliterator() { return Spliterators.emptySpliterator(); }
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4433
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4434
        // Preserves singleton property
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  4435
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4436
        private Object readResolve() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4437
            return EMPTY_SET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4438
        }
43068
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  4439
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  4440
        @Override
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  4441
        public int hashCode() {
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  4442
            return 0;
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  4443
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4444
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4445
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4446
    /**
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4447
     * Returns an empty sorted set (immutable).  This set is serializable.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4448
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4449
     * <p>This example illustrates the type-safe way to obtain an empty
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4450
     * sorted set:
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4451
     * <pre> {@code
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4452
     *     SortedSet<String> s = Collections.emptySortedSet();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4453
     * }</pre>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4454
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4455
     * @implNote Implementations of this method need not create a separate
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4456
     * {@code SortedSet} object for each call.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4457
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4458
     * @param <E> type of elements, if there were any, in the set
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4459
     * @return the empty sorted set
10896
8b5d56140b70 4533691: Add Collections.emptySortedSet()
mduigou
parents: 10790
diff changeset
  4460
     * @since 1.8
8b5d56140b70 4533691: Add Collections.emptySortedSet()
mduigou
parents: 10790
diff changeset
  4461
     */
8b5d56140b70 4533691: Add Collections.emptySortedSet()
mduigou
parents: 10790
diff changeset
  4462
    @SuppressWarnings("unchecked")
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4463
    public static <E> SortedSet<E> emptySortedSet() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4464
        return (SortedSet<E>) UnmodifiableNavigableSet.EMPTY_NAVIGABLE_SET;
10896
8b5d56140b70 4533691: Add Collections.emptySortedSet()
mduigou
parents: 10790
diff changeset
  4465
    }
8b5d56140b70 4533691: Add Collections.emptySortedSet()
mduigou
parents: 10790
diff changeset
  4466
8b5d56140b70 4533691: Add Collections.emptySortedSet()
mduigou
parents: 10790
diff changeset
  4467
    /**
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4468
     * Returns an empty navigable set (immutable).  This set is serializable.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4469
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4470
     * <p>This example illustrates the type-safe way to obtain an empty
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4471
     * navigable set:
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4472
     * <pre> {@code
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4473
     *     NavigableSet<String> s = Collections.emptyNavigableSet();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4474
     * }</pre>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4475
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4476
     * @implNote Implementations of this method need not
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4477
     * create a separate {@code NavigableSet} object for each call.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4478
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4479
     * @param <E> type of elements, if there were any, in the set
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4480
     * @return the empty navigable set
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4481
     * @since 1.8
10896
8b5d56140b70 4533691: Add Collections.emptySortedSet()
mduigou
parents: 10790
diff changeset
  4482
     */
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4483
    @SuppressWarnings("unchecked")
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4484
    public static <E> NavigableSet<E> emptyNavigableSet() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4485
        return (NavigableSet<E>) UnmodifiableNavigableSet.EMPTY_NAVIGABLE_SET;
10896
8b5d56140b70 4533691: Add Collections.emptySortedSet()
mduigou
parents: 10790
diff changeset
  4486
    }
8b5d56140b70 4533691: Add Collections.emptySortedSet()
mduigou
parents: 10790
diff changeset
  4487
8b5d56140b70 4533691: Add Collections.emptySortedSet()
mduigou
parents: 10790
diff changeset
  4488
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4489
     * The empty list (immutable).  This list is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4490
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4491
     * @see #emptyList()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4492
     */
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 12448
diff changeset
  4493
    @SuppressWarnings("rawtypes")
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  4494
    public static final List EMPTY_LIST = new EmptyList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4495
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4496
    /**
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4497
     * Returns an empty list (immutable).  This list is serializable.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4498
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4499
     * <p>This example illustrates the type-safe way to obtain an empty list:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4500
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4501
     *     List&lt;String&gt; s = Collections.emptyList();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4502
     * </pre>
22285
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
  4503
     *
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
  4504
     * @implNote
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  4505
     * Implementations of this method need not create a separate {@code List}
22285
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
  4506
     * object for each call.   Using this method is likely to have comparable
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
  4507
     * cost to using the like-named field.  (Unlike this method, the field does
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 22078
diff changeset
  4508
     * not provide type safety.)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4509
     *
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4510
     * @param <T> type of elements, if there were any, in the list
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4511
     * @return an empty immutable list
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4512
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4513
     * @see #EMPTY_LIST
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4514
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4515
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4516
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4517
    public static final <T> List<T> emptyList() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4518
        return (List<T>) EMPTY_LIST;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4519
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4520
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4521
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4522
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4523
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4524
    private static class EmptyList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4525
        extends AbstractList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4526
        implements RandomAccess, Serializable {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  4527
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4528
        private static final long serialVersionUID = 8842843931221139166L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4529
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4530
        public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4531
            return emptyIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4532
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4533
        public ListIterator<E> listIterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4534
            return emptyListIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4535
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4536
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4537
        public int size() {return 0;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4538
        public boolean isEmpty() {return true;}
39059
a51b9d78b20c 8158253: Collections: Implement a noop clear() for EmptyList, EmptyMap and EmptySet
psandoz
parents: 36436
diff changeset
  4539
        public void clear() {}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4540
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4541
        public boolean contains(Object obj) {return false;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4542
        public boolean containsAll(Collection<?> c) { return c.isEmpty(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4543
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4544
        public Object[] toArray() { return new Object[0]; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4545
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4546
        public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4547
            if (a.length > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4548
                a[0] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4549
            return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4550
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4551
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4552
        public E get(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4553
            throw new IndexOutOfBoundsException("Index: "+index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4554
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4555
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4556
        public boolean equals(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4557
            return (o instanceof List) && ((List<?>)o).isEmpty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4558
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4559
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4560
        public int hashCode() { return 1; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4561
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4562
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4563
        public boolean removeIf(Predicate<? super E> filter) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4564
            Objects.requireNonNull(filter);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4565
            return false;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4566
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4567
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4568
        public void replaceAll(UnaryOperator<E> operator) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4569
            Objects.requireNonNull(operator);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4570
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4571
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4572
        public void sort(Comparator<? super E> c) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4573
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4574
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4575
        // Override default methods in Collection
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4576
        @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4577
        public void forEach(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4578
            Objects.requireNonNull(action);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4579
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4580
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4581
        @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4582
        public Spliterator<E> spliterator() { return Spliterators.emptySpliterator(); }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4583
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4584
        // Preserves singleton property
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  4585
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4586
        private Object readResolve() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4587
            return EMPTY_LIST;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4588
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4589
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4590
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4591
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4592
     * The empty map (immutable).  This map is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4593
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4594
     * @see #emptyMap()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4595
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4596
     */
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 12448
diff changeset
  4597
    @SuppressWarnings("rawtypes")
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  4598
    public static final Map EMPTY_MAP = new EmptyMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4599
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4600
    /**
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4601
     * Returns an empty map (immutable).  This map is serializable.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4602
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4603
     * <p>This example illustrates the type-safe way to obtain an empty map:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4604
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4605
     *     Map&lt;String, Date&gt; s = Collections.emptyMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4606
     * </pre>
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4607
     * @implNote Implementations of this method need not create a separate
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4608
     * {@code Map} object for each call.  Using this method is likely to have
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4609
     * comparable cost to using the like-named field.  (Unlike this method, the
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4610
     * field does not provide type safety.)
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4611
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4612
     * @param <K> the class of the map keys
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4613
     * @param <V> the class of the map values
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4614
     * @return an empty map
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4615
     * @see #EMPTY_MAP
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4616
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4617
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4618
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4619
    public static final <K,V> Map<K,V> emptyMap() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4620
        return (Map<K,V>) EMPTY_MAP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4621
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4622
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4623
    /**
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4624
     * Returns an empty sorted map (immutable).  This map is serializable.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4625
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4626
     * <p>This example illustrates the type-safe way to obtain an empty map:
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4627
     * <pre> {@code
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4628
     *     SortedMap<String, Date> s = Collections.emptySortedMap();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4629
     * }</pre>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4630
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4631
     * @implNote Implementations of this method need not create a separate
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4632
     * {@code SortedMap} object for each call.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4633
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4634
     * @param <K> the class of the map keys
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4635
     * @param <V> the class of the map values
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4636
     * @return an empty sorted map
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4637
     * @since 1.8
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4638
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4639
    @SuppressWarnings("unchecked")
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4640
    public static final <K,V> SortedMap<K,V> emptySortedMap() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4641
        return (SortedMap<K,V>) UnmodifiableNavigableMap.EMPTY_NAVIGABLE_MAP;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4642
    }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4643
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4644
    /**
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4645
     * Returns an empty navigable map (immutable).  This map is serializable.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4646
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4647
     * <p>This example illustrates the type-safe way to obtain an empty map:
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4648
     * <pre> {@code
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4649
     *     NavigableMap<String, Date> s = Collections.emptyNavigableMap();
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4650
     * }</pre>
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4651
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4652
     * @implNote Implementations of this method need not create a separate
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4653
     * {@code NavigableMap} object for each call.
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4654
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4655
     * @param <K> the class of the map keys
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4656
     * @param <V> the class of the map values
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4657
     * @return an empty navigable map
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4658
     * @since 1.8
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4659
     */
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4660
    @SuppressWarnings("unchecked")
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4661
    public static final <K,V> NavigableMap<K,V> emptyNavigableMap() {
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4662
        return (NavigableMap<K,V>) UnmodifiableNavigableMap.EMPTY_NAVIGABLE_MAP;
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4663
    }
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4664
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4665
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4666
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4667
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4668
    private static class EmptyMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4669
        extends AbstractMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4670
        implements Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4671
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  4672
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4673
        private static final long serialVersionUID = 6428348081105594320L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4674
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4675
        public int size()                          {return 0;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4676
        public boolean isEmpty()                   {return true;}
39059
a51b9d78b20c 8158253: Collections: Implement a noop clear() for EmptyList, EmptyMap and EmptySet
psandoz
parents: 36436
diff changeset
  4677
        public void clear()                        {}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4678
        public boolean containsKey(Object key)     {return false;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4679
        public boolean containsValue(Object value) {return false;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4680
        public V get(Object key)                   {return null;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4681
        public Set<K> keySet()                     {return emptySet();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4682
        public Collection<V> values()              {return emptySet();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4683
        public Set<Map.Entry<K,V>> entrySet()      {return emptySet();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4684
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4685
        public boolean equals(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4686
            return (o instanceof Map) && ((Map<?,?>)o).isEmpty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4687
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4688
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4689
        public int hashCode()                      {return 0;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4690
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4691
        // Override default methods in Map
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4692
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4693
        @SuppressWarnings("unchecked")
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4694
        public V getOrDefault(Object k, V defaultValue) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4695
            return defaultValue;
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4696
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4697
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4698
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4699
        public void forEach(BiConsumer<? super K, ? super V> action) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4700
            Objects.requireNonNull(action);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4701
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4702
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4703
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4704
        public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4705
            Objects.requireNonNull(function);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4706
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4707
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4708
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4709
        public V putIfAbsent(K key, V value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4710
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4711
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4712
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4713
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4714
        public boolean remove(Object key, Object value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4715
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4716
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4717
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4718
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4719
        public boolean replace(K key, V oldValue, V newValue) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4720
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4721
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4722
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4723
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4724
        public V replace(K key, V value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4725
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4726
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4727
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4728
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4729
        public V computeIfAbsent(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4730
                Function<? super K, ? extends V> mappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4731
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4732
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4733
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4734
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4735
        public V computeIfPresent(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4736
                BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4737
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4738
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4739
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4740
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4741
        public V compute(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4742
                BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4743
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4744
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4745
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4746
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4747
        public V merge(K key, V value,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4748
                BiFunction<? super V, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4749
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4750
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  4751
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4752
        // Preserves singleton property
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  4753
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4754
        private Object readResolve() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4755
            return EMPTY_MAP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4756
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4757
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4758
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4759
    // Singleton collections
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4760
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4761
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4762
     * Returns an immutable set containing only the specified object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4763
     * The returned set is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4764
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4765
     * @param  <T> the class of the objects in the set
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4766
     * @param o the sole object to be stored in the returned set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4767
     * @return an immutable set containing only the specified object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4768
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4769
    public static <T> Set<T> singleton(T o) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  4770
        return new SingletonSet<>(o);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4771
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4772
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4773
    static <E> Iterator<E> singletonIterator(final E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4774
        return new Iterator<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4775
            private boolean hasNext = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4776
            public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4777
                return hasNext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4778
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4779
            public E next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4780
                if (hasNext) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4781
                    hasNext = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4782
                    return e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4783
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4784
                throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4785
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4786
            public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4787
                throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4788
            }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4789
            @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4790
            public void forEachRemaining(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4791
                Objects.requireNonNull(action);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4792
                if (hasNext) {
42435
349ac3a65124 8166446: SingletonIterator.forEachRemaining doesn't advance before calling action
smarks
parents: 39059
diff changeset
  4793
                    hasNext = false;
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4794
                    action.accept(e);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4795
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4796
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4797
        };
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4798
    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4799
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4800
    /**
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4801
     * Creates a {@code Spliterator} with only the specified element
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4802
     *
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4803
     * @param <T> Type of elements
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4804
     * @return A singleton {@code Spliterator}
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4805
     */
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4806
    static <T> Spliterator<T> singletonSpliterator(final T element) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4807
        return new Spliterator<T>() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4808
            long est = 1;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4809
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4810
            @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4811
            public Spliterator<T> trySplit() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4812
                return null;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4813
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4814
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4815
            @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4816
            public boolean tryAdvance(Consumer<? super T> consumer) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4817
                Objects.requireNonNull(consumer);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4818
                if (est > 0) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4819
                    est--;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4820
                    consumer.accept(element);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4821
                    return true;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4822
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4823
                return false;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4824
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4825
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4826
            @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4827
            public void forEachRemaining(Consumer<? super T> consumer) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4828
                tryAdvance(consumer);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4829
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4830
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4831
            @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4832
            public long estimateSize() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4833
                return est;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4834
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4835
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4836
            @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4837
            public int characteristics() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4838
                int value = (element != null) ? Spliterator.NONNULL : 0;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4839
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4840
                return value | Spliterator.SIZED | Spliterator.SUBSIZED | Spliterator.IMMUTABLE |
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4841
                       Spliterator.DISTINCT | Spliterator.ORDERED;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4842
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4843
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4844
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4845
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4846
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4847
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4848
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4849
    private static class SingletonSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4850
        extends AbstractSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4851
        implements Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4852
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  4853
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4854
        private static final long serialVersionUID = 3193687207550431679L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4855
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  4856
        @SuppressWarnings("serial") // Conditionally serializable
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  4857
        private final E element;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4858
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4859
        SingletonSet(E e) {element = e;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4860
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4861
        public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4862
            return singletonIterator(element);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4863
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4864
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4865
        public int size() {return 1;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4866
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4867
        public boolean contains(Object o) {return eq(o, element);}
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4868
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4869
        // Override default methods for Collection
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4870
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4871
        public void forEach(Consumer<? super E> action) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4872
            action.accept(element);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4873
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4874
        @Override
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4875
        public Spliterator<E> spliterator() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4876
            return singletonSpliterator(element);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4877
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4878
        @Override
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4879
        public boolean removeIf(Predicate<? super E> filter) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4880
            throw new UnsupportedOperationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4881
        }
43068
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  4882
        @Override
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  4883
        public int hashCode() {
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  4884
            return Objects.hashCode(element);
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  4885
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4886
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4887
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4888
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4889
     * Returns an immutable list containing only the specified object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4890
     * The returned list is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4891
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4892
     * @param  <T> the class of the objects in the list
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4893
     * @param o the sole object to be stored in the returned list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4894
     * @return an immutable list containing only the specified object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4895
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4896
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4897
    public static <T> List<T> singletonList(T o) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  4898
        return new SingletonList<>(o);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4899
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4900
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4901
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4902
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4903
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4904
    private static class SingletonList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4905
        extends AbstractList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4906
        implements RandomAccess, Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4907
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  4908
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4909
        private static final long serialVersionUID = 3093736618740652951L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4910
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  4911
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4912
        private final E element;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4913
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4914
        SingletonList(E obj)                {element = obj;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4915
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4916
        public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4917
            return singletonIterator(element);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4918
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4919
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4920
        public int size()                   {return 1;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4921
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4922
        public boolean contains(Object obj) {return eq(obj, element);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4923
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4924
        public E get(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4925
            if (index != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4926
              throw new IndexOutOfBoundsException("Index: "+index+", Size: 1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4927
            return element;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4928
        }
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4929
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4930
        // Override default methods for Collection
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4931
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4932
        public void forEach(Consumer<? super E> action) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4933
            action.accept(element);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4934
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4935
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4936
        public boolean removeIf(Predicate<? super E> filter) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4937
            throw new UnsupportedOperationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4938
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4939
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4940
        public void replaceAll(UnaryOperator<E> operator) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4941
            throw new UnsupportedOperationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4942
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4943
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4944
        public void sort(Comparator<? super E> c) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  4945
        }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4946
        @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4947
        public Spliterator<E> spliterator() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4948
            return singletonSpliterator(element);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  4949
        }
43068
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  4950
        @Override
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  4951
        public int hashCode() {
43069
6653ea6dad6e 8172720: Collections.SingletonList::hashCode not spec-compliant
redestad
parents: 43068
diff changeset
  4952
            return 31 + Objects.hashCode(element);
43068
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  4953
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4954
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4955
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4956
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4957
     * Returns an immutable map, mapping only the specified key to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4958
     * specified value.  The returned map is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4959
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4960
     * @param <K> the class of the map keys
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  4961
     * @param <V> the class of the map values
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4962
     * @param key the sole key to be stored in the returned map.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  4963
     * @param value the value to which the returned map maps {@code key}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4964
     * @return an immutable map containing only the specified key-value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4965
     *         mapping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4966
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4967
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4968
    public static <K,V> Map<K,V> singletonMap(K key, V value) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  4969
        return new SingletonMap<>(key, value);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4970
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4971
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4972
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4973
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4974
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4975
    private static class SingletonMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4976
          extends AbstractMap<K,V>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4977
          implements Serializable {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  4978
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4979
        private static final long serialVersionUID = -6979724477215052911L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4980
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  4981
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4982
        private final K k;
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  4983
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4984
        private final V v;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4985
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4986
        SingletonMap(K key, V value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4987
            k = key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4988
            v = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4989
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4990
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4991
        public int size()                                           {return 1;}
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4992
        public boolean isEmpty()                                {return false;}
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4993
        public boolean containsKey(Object key)             {return eq(key, k);}
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4994
        public boolean containsValue(Object value)       {return eq(value, v);}
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  4995
        public V get(Object key)              {return (eq(key, k) ? v : null);}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4996
23746
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22285
diff changeset
  4997
        private transient Set<K> keySet;
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22285
diff changeset
  4998
        private transient Set<Map.Entry<K,V>> entrySet;
ce60f7b62312 8035284: Remove redundant null initialization
mduigou
parents: 22285
diff changeset
  4999
        private transient Collection<V> values;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5000
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5001
        public Set<K> keySet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5002
            if (keySet==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5003
                keySet = singleton(k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5004
            return keySet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5005
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5006
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5007
        public Set<Map.Entry<K,V>> entrySet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5008
            if (entrySet==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5009
                entrySet = Collections.<Map.Entry<K,V>>singleton(
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  5010
                    new SimpleImmutableEntry<>(k, v));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5011
            return entrySet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5012
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5013
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5014
        public Collection<V> values() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5015
            if (values==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5016
                values = singleton(v);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5017
            return values;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5018
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5019
16867
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5020
        // Override default methods in Map
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5021
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5022
        public V getOrDefault(Object key, V defaultValue) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5023
            return eq(key, k) ? v : defaultValue;
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5024
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5025
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5026
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5027
        public void forEach(BiConsumer<? super K, ? super V> action) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5028
            action.accept(k, v);
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5029
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5030
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5031
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5032
        public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5033
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5034
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5035
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5036
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5037
        public V putIfAbsent(K key, V value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5038
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5039
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5040
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5041
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5042
        public boolean remove(Object key, Object value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5043
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5044
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5045
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5046
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5047
        public boolean replace(K key, V oldValue, V newValue) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5048
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5049
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5050
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5051
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5052
        public V replace(K key, V value) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5053
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5054
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5055
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5056
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5057
        public V computeIfAbsent(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5058
                Function<? super K, ? extends V> mappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5059
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5060
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5061
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5062
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5063
        public V computeIfPresent(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5064
                BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5065
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5066
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5067
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5068
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5069
        public V compute(K key,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5070
                BiFunction<? super K, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5071
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5072
        }
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5073
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5074
        @Override
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5075
        public V merge(K key, V value,
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5076
                BiFunction<? super V, ? super V, ? extends V> remappingFunction) {
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5077
            throw new UnsupportedOperationException();
76499721c6c1 8004518: Add in-place operations to Map
mduigou
parents: 16064
diff changeset
  5078
        }
43068
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  5079
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  5080
        @Override
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  5081
        public int hashCode() {
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  5082
            return Objects.hashCode(k) ^ Objects.hashCode(v);
df01087b2c43 8166365: Small immutable collections should provide optimized implementations when possible
redestad
parents: 42435
diff changeset
  5083
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5084
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5085
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5086
    // Miscellaneous
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5087
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5088
    /**
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5089
     * Returns an immutable list consisting of {@code n} copies of the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5090
     * specified object.  The newly allocated data object is tiny (it contains
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5091
     * a single reference to the data object).  This method is useful in
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5092
     * combination with the {@code List.addAll} method to grow lists.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5093
     * The returned list is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5094
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  5095
     * @param  <T> the class of the object to copy and of the objects
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  5096
     *         in the returned list.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5097
     * @param  n the number of elements in the returned list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5098
     * @param  o the element to appear repeatedly in the returned list.
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5099
     * @return an immutable list consisting of {@code n} copies of the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5100
     *         specified object.
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5781
diff changeset
  5101
     * @throws IllegalArgumentException if {@code n < 0}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5102
     * @see    List#addAll(Collection)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5103
     * @see    List#addAll(int, Collection)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5104
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5105
    public static <T> List<T> nCopies(int n, T o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5106
        if (n < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5107
            throw new IllegalArgumentException("List length = " + n);
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  5108
        return new CopiesList<>(n, o);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5109
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5110
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5111
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5112
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5113
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5114
    private static class CopiesList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5115
        extends AbstractList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5116
        implements RandomAccess, Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5117
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  5118
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5119
        private static final long serialVersionUID = 2739099268398711800L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5120
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5121
        final int n;
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  5122
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5123
        final E element;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5124
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5125
        CopiesList(int n, E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5126
            assert n >= 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5127
            this.n = n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5128
            element = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5129
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5130
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5131
        public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5132
            return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5133
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5134
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5135
        public boolean contains(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5136
            return n != 0 && eq(obj, element);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5137
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5138
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5139
        public int indexOf(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5140
            return contains(o) ? 0 : -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5141
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5142
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5143
        public int lastIndexOf(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5144
            return contains(o) ? n - 1 : -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5145
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5146
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5147
        public E get(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5148
            if (index < 0 || index >= n)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5149
                throw new IndexOutOfBoundsException("Index: "+index+
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5150
                                                    ", Size: "+n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5151
            return element;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5152
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5153
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5154
        public Object[] toArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5155
            final Object[] a = new Object[n];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5156
            if (element != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5157
                Arrays.fill(a, 0, n, element);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5158
            return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5159
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5160
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 12448
diff changeset
  5161
        @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5162
        public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5163
            final int n = this.n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5164
            if (a.length < n) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5165
                a = (T[])java.lang.reflect.Array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5166
                    .newInstance(a.getClass().getComponentType(), n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5167
                if (element != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5168
                    Arrays.fill(a, 0, n, element);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5169
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5170
                Arrays.fill(a, 0, n, element);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5171
                if (a.length > n)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5172
                    a[n] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5173
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5174
            return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5175
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5176
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5177
        public List<E> subList(int fromIndex, int toIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5178
            if (fromIndex < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5179
                throw new IndexOutOfBoundsException("fromIndex = " + fromIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5180
            if (toIndex > n)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5181
                throw new IndexOutOfBoundsException("toIndex = " + toIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5182
            if (fromIndex > toIndex)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5183
                throw new IllegalArgumentException("fromIndex(" + fromIndex +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5184
                                                   ") > toIndex(" + toIndex + ")");
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  5185
            return new CopiesList<>(toIndex - fromIndex, element);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5186
        }
19603
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5187
53107
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5188
        @Override
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5189
        public int hashCode() {
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5190
            if (n == 0) return 1;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5191
            // hashCode of n repeating elements is 31^n + elementHash * Sum(31^k, k = 0..n-1)
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5192
            // this implementation completes in O(log(n)) steps taking advantage of
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5193
            // 31^(2*n) = (31^n)^2 and Sum(31^k, k = 0..(2*n-1)) = Sum(31^k, k = 0..n-1) * (31^n + 1)
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5194
            int pow = 31;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5195
            int sum = 1;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5196
            for (int i = Integer.numberOfLeadingZeros(n) + 1; i < Integer.SIZE; i++) {
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5197
                sum *= pow + 1;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5198
                pow *= pow;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5199
                if ((n << i) < 0) {
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5200
                    pow *= 31;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5201
                    sum = sum * 31 + 1;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5202
                }
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5203
            }
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5204
            return pow + sum * (element == null ? 0 : element.hashCode());
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5205
        }
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5206
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5207
        @Override
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5208
        public boolean equals(Object o) {
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5209
            if (o == this)
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5210
                return true;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5211
            if (o instanceof CopiesList) {
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5212
                CopiesList<?> other = (CopiesList<?>) o;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5213
                return n == other.n && (n == 0 || eq(element, other.element));
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5214
            }
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5215
            if (!(o instanceof List))
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5216
                return false;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5217
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5218
            int remaining = n;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5219
            E e = element;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5220
            Iterator<?> itr = ((List<?>) o).iterator();
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5221
            if (e == null) {
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5222
                while (itr.hasNext() && remaining-- > 0) {
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5223
                    if (itr.next() != null)
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5224
                        return false;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5225
                }
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5226
            } else {
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5227
                while (itr.hasNext() && remaining-- > 0) {
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5228
                    if (!e.equals(itr.next()))
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5229
                        return false;
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5230
                }
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5231
            }
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5232
            return remaining == 0 && !itr.hasNext();
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5233
        }
cfceb4df2499 8214687: Optimize Collections.nCopies().hashCode() and equals()
tvaleev
parents: 50775
diff changeset
  5234
19603
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5235
        // Override default methods in Collection
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5236
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5237
        public Stream<E> stream() {
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5238
            return IntStream.range(0, n).mapToObj(i -> element);
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5239
        }
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5240
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5241
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5242
        public Stream<E> parallelStream() {
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5243
            return IntStream.range(0, n).parallel().mapToObj(i -> element);
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5244
        }
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5245
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5246
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5247
        public Spliterator<E> spliterator() {
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5248
            return stream().spliterator();
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5249
        }
55702
339e544d59e3 8213432: Better copies of CopiesList
smarks
parents: 53107
diff changeset
  5250
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  5251
        @java.io.Serial
55702
339e544d59e3 8213432: Better copies of CopiesList
smarks
parents: 53107
diff changeset
  5252
        private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException {
339e544d59e3 8213432: Better copies of CopiesList
smarks
parents: 53107
diff changeset
  5253
            ois.defaultReadObject();
339e544d59e3 8213432: Better copies of CopiesList
smarks
parents: 53107
diff changeset
  5254
            SharedSecrets.getJavaObjectInputStreamAccess().checkArray(ois, Object[].class, n);
339e544d59e3 8213432: Better copies of CopiesList
smarks
parents: 53107
diff changeset
  5255
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5256
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5257
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5258
    /**
9004
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5259
     * Returns a comparator that imposes the reverse of the <em>natural
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5260
     * ordering</em> on a collection of objects that implement the
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5261
     * {@code Comparable} interface.  (The natural ordering is the ordering
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5262
     * imposed by the objects' own {@code compareTo} method.)  This enables a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5263
     * simple idiom for sorting (or maintaining) collections (or arrays) of
9004
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5264
     * objects that implement the {@code Comparable} interface in
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5265
     * reverse-natural-order.  For example, suppose {@code a} is an array of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5266
     * strings. Then: <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5267
     *          Arrays.sort(a, Collections.reverseOrder());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5268
     * </pre> sorts the array in reverse-lexicographic (alphabetical) order.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5269
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5270
     * The returned comparator is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5271
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  5272
     * @param  <T> the class of the objects compared by the comparator
9004
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5273
     * @return A comparator that imposes the reverse of the <i>natural
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5274
     *         ordering</i> on a collection of objects that implement
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5275
     *         the {@code Comparable} interface.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5276
     * @see Comparable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5277
     */
13795
73850c397272 7193406: Clean-up JDK Build Warnings in java.util, java.io
dxu
parents: 12448
diff changeset
  5278
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5279
    public static <T> Comparator<T> reverseOrder() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5280
        return (Comparator<T>) ReverseComparator.REVERSE_ORDER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5281
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5282
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5283
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5284
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5285
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5286
    private static class ReverseComparator
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5287
        implements Comparator<Comparable<Object>>, Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5288
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  5289
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5290
        private static final long serialVersionUID = 7207038068494060240L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5291
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5292
        static final ReverseComparator REVERSE_ORDER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5293
            = new ReverseComparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5294
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5295
        public int compare(Comparable<Object> c1, Comparable<Object> c2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5296
            return c2.compareTo(c1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5297
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5298
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  5299
        @java.io.Serial
16064
ef93558b0d63 8001667: Comparator combinators and extension methods
mduigou
parents: 13795
diff changeset
  5300
        private Object readResolve() { return Collections.reverseOrder(); }
18571
8e3cb3c46ae8 8009736: Comparator API cleanup
henryjen
parents: 18156
diff changeset
  5301
8e3cb3c46ae8 8009736: Comparator API cleanup
henryjen
parents: 18156
diff changeset
  5302
        @Override
8e3cb3c46ae8 8009736: Comparator API cleanup
henryjen
parents: 18156
diff changeset
  5303
        public Comparator<Comparable<Object>> reversed() {
8e3cb3c46ae8 8009736: Comparator API cleanup
henryjen
parents: 18156
diff changeset
  5304
            return Comparator.naturalOrder();
8e3cb3c46ae8 8009736: Comparator API cleanup
henryjen
parents: 18156
diff changeset
  5305
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5306
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5307
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5308
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5309
     * Returns a comparator that imposes the reverse ordering of the specified
9004
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5310
     * comparator.  If the specified comparator is {@code null}, this method is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5311
     * equivalent to {@link #reverseOrder()} (in other words, it returns a
9004
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5312
     * comparator that imposes the reverse of the <em>natural ordering</em> on
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5313
     * a collection of objects that implement the Comparable interface).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5314
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5315
     * <p>The returned comparator is serializable (assuming the specified
9004
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5316
     * comparator is also serializable or {@code null}).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5317
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  5318
     * @param <T> the class of the objects compared by the comparator
9004
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5319
     * @param cmp a comparator who's ordering is to be reversed by the returned
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5320
     * comparator or {@code null}
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5321
     * @return A comparator that imposes the reverse ordering of the
284f923de1bf 7030442: Add missing @param tag for Collections.reverseOrder()
mduigou
parents: 8151
diff changeset
  5322
     *         specified comparator.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5323
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5324
     */
48249
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
  5325
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5326
    public static <T> Comparator<T> reverseOrder(Comparator<T> cmp) {
48249
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
  5327
        if (cmp == null) {
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
  5328
            return (Comparator<T>) ReverseComparator.REVERSE_ORDER;
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
  5329
        } else if (cmp == ReverseComparator.REVERSE_ORDER) {
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
  5330
            return (Comparator<T>) Comparators.NaturalOrderComparator.INSTANCE;
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
  5331
        } else if (cmp == Comparators.NaturalOrderComparator.INSTANCE) {
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
  5332
            return (Comparator<T>) ReverseComparator.REVERSE_ORDER;
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
  5333
        } else if (cmp instanceof ReverseComparator2) {
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
  5334
            return ((ReverseComparator2<T>) cmp).cmp;
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
  5335
        } else {
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
  5336
            return new ReverseComparator2<>(cmp);
c21740de9431 8171826: Comparator.reverseOrder(c) mishandles singleton comparators
psandoz
parents: 48059
diff changeset
  5337
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5338
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5339
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5340
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5341
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5342
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5343
    private static class ReverseComparator2<T> implements Comparator<T>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5344
        Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5345
    {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  5346
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5347
        private static final long serialVersionUID = 4374092139857L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5348
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5349
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5350
         * The comparator specified in the static factory.  This will never
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5351
         * be null, as the static factory returns a ReverseComparator
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5352
         * instance if its argument is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5353
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5354
         * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5355
         */
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  5356
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5357
        final Comparator<T> cmp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5358
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5359
        ReverseComparator2(Comparator<T> cmp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5360
            assert cmp != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5361
            this.cmp = cmp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5362
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5363
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5364
        public int compare(T t1, T t2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5365
            return cmp.compare(t2, t1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5366
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5367
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5368
        public boolean equals(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5369
            return (o == this) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5370
                (o instanceof ReverseComparator2 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5371
                 cmp.equals(((ReverseComparator2)o).cmp));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5372
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5373
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5374
        public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5375
            return cmp.hashCode() ^ Integer.MIN_VALUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5376
        }
18571
8e3cb3c46ae8 8009736: Comparator API cleanup
henryjen
parents: 18156
diff changeset
  5377
8e3cb3c46ae8 8009736: Comparator API cleanup
henryjen
parents: 18156
diff changeset
  5378
        @Override
8e3cb3c46ae8 8009736: Comparator API cleanup
henryjen
parents: 18156
diff changeset
  5379
        public Comparator<T> reversed() {
8e3cb3c46ae8 8009736: Comparator API cleanup
henryjen
parents: 18156
diff changeset
  5380
            return cmp;
8e3cb3c46ae8 8009736: Comparator API cleanup
henryjen
parents: 18156
diff changeset
  5381
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5382
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5383
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5384
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5385
     * Returns an enumeration over the specified collection.  This provides
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5386
     * interoperability with legacy APIs that require an enumeration
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5387
     * as input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5388
     *
31469
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 25859
diff changeset
  5389
     * <p>The iterator returned from a call to {@link Enumeration#asIterator()}
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 25859
diff changeset
  5390
     * does not support removal of elements from the specified collection.  This
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 25859
diff changeset
  5391
     * is necessary to avoid unintentionally increasing the capabilities of the
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 25859
diff changeset
  5392
     * returned enumeration.
92cc72d2a11a 8081678: Add Stream returning methods to classes where there currently exist only Enumeration returning methods
psandoz
parents: 25859
diff changeset
  5393
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  5394
     * @param  <T> the class of the objects in the collection
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5395
     * @param c the collection for which an enumeration is to be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5396
     * @return an enumeration over the specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5397
     * @see Enumeration
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5398
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5399
    public static <T> Enumeration<T> enumeration(final Collection<T> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5400
        return new Enumeration<T>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5401
            private final Iterator<T> i = c.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5402
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5403
            public boolean hasMoreElements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5404
                return i.hasNext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5405
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5406
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5407
            public T nextElement() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5408
                return i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5409
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5410
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5411
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5412
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5413
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5414
     * Returns an array list containing the elements returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5415
     * specified enumeration in the order they are returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5416
     * enumeration.  This method provides interoperability between
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5417
     * legacy APIs that return enumerations and new APIs that require
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5418
     * collections.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5419
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  5420
     * @param <T> the class of the objects returned by the enumeration
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5421
     * @param e enumeration providing elements for the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5422
     *          array list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5423
     * @return an array list containing the elements returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5424
     *         by the specified enumeration.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5425
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5426
     * @see Enumeration
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5427
     * @see ArrayList
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5428
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5429
    public static <T> ArrayList<T> list(Enumeration<T> e) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  5430
        ArrayList<T> l = new ArrayList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5431
        while (e.hasMoreElements())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5432
            l.add(e.nextElement());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5433
        return l;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5434
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5435
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5436
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5437
     * Returns true if the specified arguments are equal, or both null.
18818
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  5438
     *
a9ceff754226 7129185: Add Collections.{checked|empty|unmodifiable}Navigable{Map|Set}
mduigou
parents: 18794
diff changeset
  5439
     * NB: Do not replace with Object.equals until JDK-8015417 is resolved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5440
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5441
    static boolean eq(Object o1, Object o2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5442
        return o1==null ? o2==null : o1.equals(o2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5444
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5445
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5446
     * Returns the number of elements in the specified collection equal to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5447
     * specified object.  More formally, returns the number of elements
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5448
     * {@code e} in the collection such that
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5449
     * {@code Objects.equals(o, e)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5450
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5451
     * @param c the collection in which to determine the frequency
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5452
     *     of {@code o}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5453
     * @param o the object whose frequency is to be determined
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  5454
     * @return the number of elements in {@code c} equal to {@code o}
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5455
     * @throws NullPointerException if {@code c} is null
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5456
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5457
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5458
    public static int frequency(Collection<?> c, Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5459
        int result = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5460
        if (o == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5461
            for (Object e : c)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5462
                if (e == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5463
                    result++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5464
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5465
            for (Object e : c)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5466
                if (o.equals(e))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5467
                    result++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5468
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5469
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5470
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5471
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5472
    /**
7987
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5473
     * Returns {@code true} if the two specified collections have no
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5474
     * elements in common.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5475
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5476
     * <p>Care must be exercised if this method is used on collections that
7987
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5477
     * do not comply with the general contract for {@code Collection}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5478
     * Implementations may elect to iterate over either collection and test
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5479
     * for containment in the other collection (or to perform any equivalent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5480
     * computation).  If either collection uses a nonstandard equality test
7987
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5481
     * (as does a {@link SortedSet} whose ordering is not <em>compatible with
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5482
     * equals</em>, or the key set of an {@link IdentityHashMap}), both
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5483
     * collections must use the same nonstandard equality test, or the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5484
     * result of this method is undefined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5485
     *
7987
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5486
     * <p>Care must also be exercised when using collections that have
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5487
     * restrictions on the elements that they may contain. Collection
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5488
     * implementations are allowed to throw exceptions for any operation
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5489
     * involving elements they deem ineligible. For absolute safety the
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5490
     * specified collections should contain only elements which are
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5491
     * eligible elements for both collections.
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5492
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5493
     * <p>Note that it is permissible to pass the same collection in both
7987
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5494
     * parameters, in which case the method will return {@code true} if and
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5495
     * only if the collection is empty.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5496
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5497
     * @param c1 a collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5498
     * @param c2 a collection
7987
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5499
     * @return {@code true} if the two specified collections have no
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5500
     * elements in common.
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5501
     * @throws NullPointerException if either collection is {@code null}.
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5502
     * @throws NullPointerException if one collection contains a {@code null}
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5503
     * element and {@code null} is not an eligible element for the other collection.
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 9050
diff changeset
  5504
     * (<a href="Collection.html#optional-restrictions">optional</a>)
7987
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5505
     * @throws ClassCastException if one collection contains an element that is
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 9050
diff changeset
  5506
     * of a type which is ineligible for the other collection.
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 9050
diff changeset
  5507
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5508
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5509
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5510
    public static boolean disjoint(Collection<?> c1, Collection<?> c2) {
7987
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5511
        // The collection to be used for contains(). Preference is given to
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5512
        // the collection who's contains() has lower O() complexity.
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5513
        Collection<?> contains = c2;
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5514
        // The collection to be iterated. If the collections' contains() impl
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5515
        // are of different O() complexity, the collection with slower
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5516
        // contains() will be used for iteration. For collections who's
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5517
        // contains() are of the same complexity then best performance is
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5518
        // achieved by iterating the smaller collection.
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5519
        Collection<?> iterate = c1;
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5520
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5521
        // Performance optimization cases. The heuristics:
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5522
        //   1. Generally iterate over c1.
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5523
        //   2. If c1 is a Set then iterate over c2.
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5524
        //   3. If either collection is empty then result is always true.
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5525
        //   4. Iterate over the smaller Collection.
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5526
        if (c1 instanceof Set) {
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5527
            // Use c1 for contains as a Set's contains() is expected to perform
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5528
            // better than O(N/2)
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5529
            iterate = c2;
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5530
            contains = c1;
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5531
        } else if (!(c2 instanceof Set)) {
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5532
            // Both are mere Collections. Iterate over smaller collection.
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5533
            // Example: If c1 contains 3 elements and c2 contains 50 elements and
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5534
            // assuming contains() requires ceiling(N/2) comparisons then
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5535
            // checking for all c1 elements in c2 would require 75 comparisons
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5536
            // (3 * ceiling(50/2)) vs. checking all c2 elements in c1 requiring
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5537
            // 100 comparisons (50 * ceiling(3/2)).
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5538
            int c1size = c1.size();
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5539
            int c2size = c2.size();
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5540
            if (c1size == 0 || c2size == 0) {
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5541
                // At least one collection is empty. Nothing will match.
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5542
                return true;
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5543
            }
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5544
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5545
            if (c1size > c2size) {
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5546
                iterate = c2;
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5547
                contains = c1;
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5548
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5549
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5550
7987
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5551
        for (Object e : iterate) {
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5552
            if (contains.contains(e)) {
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5553
               // Found a common element. Collections are not disjoint.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5554
                return false;
7987
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5555
            }
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5556
        }
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5557
04c9822b55c9 6728865: Provide a better heuristics for Collections.disjoint method
mduigou
parents: 7976
diff changeset
  5558
        // No common elements were found.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5559
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5560
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5561
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5562
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5563
     * Adds all of the specified elements to the specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5564
     * Elements to be added may be specified individually or as an array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5565
     * The behavior of this convenience method is identical to that of
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5566
     * {@code c.addAll(Arrays.asList(elements))}, but this method is likely
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5567
     * to run significantly faster under most implementations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5568
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5569
     * <p>When elements are specified individually, this method provides a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5570
     * convenient way to add a few elements to an existing collection:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5571
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5572
     *     Collections.addAll(flavors, "Peaches 'n Plutonium", "Rocky Racoon");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5573
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5574
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  5575
     * @param  <T> the class of the elements to add and of the collection
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5576
     * @param c the collection into which {@code elements} are to be inserted
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5577
     * @param elements the elements to insert into {@code c}
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5578
     * @return {@code true} if the collection changed as a result of the call
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5579
     * @throws UnsupportedOperationException if {@code c} does not support
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5580
     *         the {@code add} operation
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5581
     * @throws NullPointerException if {@code elements} contains one or more
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5582
     *         null values and {@code c} does not permit null elements, or
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5583
     *         if {@code c} or {@code elements} are {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5584
     * @throws IllegalArgumentException if some property of a value in
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5585
     *         {@code elements} prevents it from being added to {@code c}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5586
     * @see Collection#addAll(Collection)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5587
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5588
     */
8151
88b01a6d5f51 7006578: Project Coin: Retrofit JDK libraries with @SafeVarargs
darcy
parents: 7987
diff changeset
  5589
    @SafeVarargs
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5590
    public static <T> boolean addAll(Collection<? super T> c, T... elements) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5591
        boolean result = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5592
        for (T element : elements)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5593
            result |= c.add(element);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5594
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5595
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5596
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5597
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5598
     * Returns a set backed by the specified map.  The resulting set displays
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5599
     * the same ordering, concurrency, and performance characteristics as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5600
     * backing map.  In essence, this factory method provides a {@link Set}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5601
     * implementation corresponding to any {@link Map} implementation.  There
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5602
     * is no need to use this method on a {@link Map} implementation that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5603
     * already has a corresponding {@link Set} implementation (such as {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5604
     * HashMap} or {@link TreeMap}).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5605
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5606
     * <p>Each method invocation on the set returned by this method results in
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5607
     * exactly one method invocation on the backing map or its {@code keySet}
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5608
     * view, with one exception.  The {@code addAll} method is implemented
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5609
     * as a sequence of {@code put} invocations on the backing map.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5610
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5611
     * <p>The specified map must be empty at the time this method is invoked,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5612
     * and should not be accessed directly after this method returns.  These
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5613
     * conditions are ensured if the map is created empty, passed directly
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5614
     * to this method, and no reference to the map is retained, as illustrated
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5615
     * in the following code fragment:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5616
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5617
     *    Set&lt;Object&gt; weakHashSet = Collections.newSetFromMap(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5618
     *        new WeakHashMap&lt;Object, Boolean&gt;());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5619
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5620
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  5621
     * @param <E> the class of the map keys and of the objects in the
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  5622
     *        returned set
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5623
     * @param map the backing map
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5624
     * @return the set backed by the map
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5625
     * @throws IllegalArgumentException if {@code map} is not empty
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5626
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5627
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5628
    public static <E> Set<E> newSetFromMap(Map<E, Boolean> map) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 7518
diff changeset
  5629
        return new SetFromMap<>(map);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5630
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5631
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5632
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5633
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5634
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5635
    private static class SetFromMap<E> extends AbstractSet<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5636
        implements Set<E>, Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5637
    {
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  5638
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5639
        private final Map<E, Boolean> m;  // The backing map
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5640
        private transient Set<E> s;       // Its keySet
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5641
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5642
        SetFromMap(Map<E, Boolean> map) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5643
            if (!map.isEmpty())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5644
                throw new IllegalArgumentException("Map is non-empty");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5645
            m = map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5646
            s = map.keySet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5647
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5648
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5649
        public void clear()               {        m.clear(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5650
        public int size()                 { return m.size(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5651
        public boolean isEmpty()          { return m.isEmpty(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5652
        public boolean contains(Object o) { return m.containsKey(o); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5653
        public boolean remove(Object o)   { return m.remove(o) != null; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5654
        public boolean add(E e) { return m.put(e, Boolean.TRUE) == null; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5655
        public Iterator<E> iterator()     { return s.iterator(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5656
        public Object[] toArray()         { return s.toArray(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5657
        public <T> T[] toArray(T[] a)     { return s.toArray(a); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5658
        public String toString()          { return s.toString(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5659
        public int hashCode()             { return s.hashCode(); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5660
        public boolean equals(Object o)   { return o == this || s.equals(o); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5661
        public boolean containsAll(Collection<?> c) {return s.containsAll(c);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5662
        public boolean removeAll(Collection<?> c)   {return s.removeAll(c);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5663
        public boolean retainAll(Collection<?> c)   {return s.retainAll(c);}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5664
        // addAll is the only inherited implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5665
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  5666
        // Override default methods in Collection
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5667
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5668
        public void forEach(Consumer<? super E> action) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5669
            s.forEach(action);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5670
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5671
        @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5672
        public boolean removeIf(Predicate<? super E> filter) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5673
            return s.removeIf(filter);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5674
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5675
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  5676
        @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  5677
        public Spliterator<E> spliterator() {return s.spliterator();}
19603
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5678
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5679
        public Stream<E> stream()           {return s.stream();}
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5680
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5681
        public Stream<E> parallelStream()   {return s.parallelStream();}
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  5682
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  5683
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5684
        private static final long serialVersionUID = 2454657854757543876L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5685
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  5686
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5687
        private void readObject(java.io.ObjectInputStream stream)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5688
            throws IOException, ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5689
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5690
            stream.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5691
            s = m.keySet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5692
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5693
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5694
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5695
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5696
     * Returns a view of a {@link Deque} as a Last-in-first-out (Lifo)
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5697
     * {@link Queue}. Method {@code add} is mapped to {@code push},
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5698
     * {@code remove} is mapped to {@code pop} and so on. This
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5699
     * view can be useful when you would like to use a method
32108
aa5490a167ee 8133188: docs: replace <tt> tags (obsolete in html5) for java.util
avstepan
parents: 31469
diff changeset
  5700
     * requiring a {@code Queue} but you need Lifo ordering.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5701
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5702
     * <p>Each method invocation on the queue returned by this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5703
     * results in exactly one method invocation on the backing deque, with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5704
     * one exception.  The {@link Queue#addAll addAll} method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5705
     * implemented as a sequence of {@link Deque#addFirst addFirst}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5706
     * invocations on the backing deque.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5707
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18822
diff changeset
  5708
     * @param  <T> the class of the objects in the deque
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5709
     * @param deque the deque
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5710
     * @return the queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5711
     * @since  1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5712
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5713
    public static <T> Queue<T> asLifoQueue(Deque<T> deque) {
34714
2637c9a952c2 8145006: Collections.asLifoQueue(null) doesn't throw NPE as specified
psandoz
parents: 33644
diff changeset
  5714
        return new AsLIFOQueue<>(Objects.requireNonNull(deque));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5715
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5716
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5717
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5718
     * @serial include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5719
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5720
    static class AsLIFOQueue<E> extends AbstractQueue<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5721
        implements Queue<E>, Serializable {
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 55702
diff changeset
  5722
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5723
        private static final long serialVersionUID = 1802017725587941708L;
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
  5724
        @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5725
        private final Deque<E> q;
50697
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5726
        AsLIFOQueue(Deque<E> q)                     { this.q = q; }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5727
        public boolean add(E e)                     { q.addFirst(e); return true; }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5728
        public boolean offer(E e)                   { return q.offerFirst(e); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5729
        public E poll()                             { return q.pollFirst(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5730
        public E remove()                           { return q.removeFirst(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5731
        public E peek()                             { return q.peekFirst(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5732
        public E element()                          { return q.getFirst(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5733
        public void clear()                         {        q.clear(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5734
        public int size()                           { return q.size(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5735
        public boolean isEmpty()                    { return q.isEmpty(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5736
        public boolean contains(Object o)           { return q.contains(o); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5737
        public boolean remove(Object o)             { return q.remove(o); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5738
        public Iterator<E> iterator()               { return q.iterator(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5739
        public Object[] toArray()                   { return q.toArray(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5740
        public <T> T[] toArray(T[] a)               { return q.toArray(a); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5741
        public <T> T[] toArray(IntFunction<T[]> f)  { return q.toArray(f); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5742
        public String toString()                    { return q.toString(); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5743
        public boolean containsAll(Collection<?> c) { return q.containsAll(c); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5744
        public boolean removeAll(Collection<?> c)   { return q.removeAll(c); }
3ef0862bbb3d 8060192: Add default method <A> A[] Collection.toArray(IntFunction<A[]> generator)
smarks
parents: 49433
diff changeset
  5745
        public boolean retainAll(Collection<?> c)   { return q.retainAll(c); }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5746
        // We use inherited addAll; forwarding addAll would be wrong
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5747
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  5748
        // Override default methods in Collection
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5749
        @Override
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  5750
        public void forEach(Consumer<? super E> action) {q.forEach(action);}
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  5751
        @Override
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5752
        public boolean removeIf(Predicate<? super E> filter) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5753
            return q.removeIf(filter);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16867
diff changeset
  5754
        }
19603
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5755
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5756
        public Spliterator<E> spliterator() {return q.spliterator();}
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5757
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5758
        public Stream<E> stream()           {return q.stream();}
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5759
        @Override
636cd05ce8e5 8023275: Wrapping collections should override default methods
henryjen
parents: 19445
diff changeset
  5760
        public Stream<E> parallelStream()   {return q.parallelStream();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5761
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  5762
}