jdk/src/java.base/share/classes/java/util/Collection.java
author chegar
Sun, 17 Aug 2014 15:54:13 +0100
changeset 25859 3317bb8137f4
parent 20491 jdk/src/share/classes/java/util/Collection.java@eb2dfc7436af
child 27262 82895f3a728a
permissions -rw-r--r--
8054834: Modular Source Code Reviewed-by: alanb, chegar, ihse, mduigou Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, chris.hegarty@oracle.com, erik.joelsson@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, magnus.ihse.bursie@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, paul.sandoz@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
16929
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
     2
 * Copyright (c) 1997, 2013, 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: 4977
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: 4977
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: 4977
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4977
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4977
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;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
    28
import java.util.function.Predicate;
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
    29
import java.util.stream.Stream;
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
    30
import java.util.stream.StreamSupport;
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
    31
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * The root interface in the <i>collection hierarchy</i>.  A collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * represents a group of objects, known as its <i>elements</i>.  Some
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * collections allow duplicate elements and others do not.  Some are ordered
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * and others unordered.  The JDK does not provide any <i>direct</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * implementations of this interface: it provides implementations of more
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * specific subinterfaces like <tt>Set</tt> and <tt>List</tt>.  This interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * is typically used to pass collections around and manipulate them where
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * maximum generality is desired.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * <p><i>Bags</i> or <i>multisets</i> (unordered collections that may contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * duplicate elements) should implement this interface directly.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * <p>All general-purpose <tt>Collection</tt> implementation classes (which
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * typically implement <tt>Collection</tt> indirectly through one of its
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * subinterfaces) should provide two "standard" constructors: a void (no
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * arguments) constructor, which creates an empty collection, and a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * constructor with a single argument of type <tt>Collection</tt>, which
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * creates a new collection with the same elements as its argument.  In
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * effect, the latter constructor allows the user to copy any collection,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * producing an equivalent collection of the desired implementation type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * There is no way to enforce this convention (as interfaces cannot contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * constructors) but all of the general-purpose <tt>Collection</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * implementations in the Java platform libraries comply.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <p>The "destructive" methods contained in this interface, that is, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * methods that modify the collection on which they operate, are specified to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * throw <tt>UnsupportedOperationException</tt> if this collection does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * support the operation.  If this is the case, these methods may, but are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * required to, throw an <tt>UnsupportedOperationException</tt> if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * invocation would have no effect on the collection.  For example, invoking
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * the {@link #addAll(Collection)} method on an unmodifiable collection may,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * but is not required to, throw the exception if the collection to be added
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18824
diff changeset
    67
 * <p><a name="optional-restrictions">
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
    68
 * Some collection implementations have restrictions on the elements that
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18824
diff changeset
    69
 * they may contain.</a>  For example, some implementations prohibit null elements,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * and some have restrictions on the types of their elements.  Attempting to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * add an ineligible element throws an unchecked exception, typically
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * <tt>NullPointerException</tt> or <tt>ClassCastException</tt>.  Attempting
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * to query the presence of an ineligible element may throw an exception,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * or it may simply return false; some implementations will exhibit the former
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * behavior and some will exhibit the latter.  More generally, attempting an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * operation on an ineligible element whose completion would not result in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * the insertion of an ineligible element into the collection may throw an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * exception or it may succeed, at the option of the implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * Such exceptions are marked as "optional" in the specification for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * <p>It is up to each collection to determine its own synchronization
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * policy.  In the absence of a stronger guarantee by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * implementation, undefined behavior may result from the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * of any method on a collection that is being mutated by another
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * thread; this includes direct invocations, passing the collection to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * a method that might perform invocations, and using an existing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * iterator to examine the collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * <p>Many methods in Collections Framework interfaces are defined in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * terms of the {@link Object#equals(Object) equals} method.  For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * the specification for the {@link #contains(Object) contains(Object o)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * method says: "returns <tt>true</tt> if and only if this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * contains at least one element <tt>e</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * <tt>(o==null ? e==null : o.equals(e))</tt>."  This specification should
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * <i>not</i> be construed to imply that invoking <tt>Collection.contains</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * with a non-null argument <tt>o</tt> will cause <tt>o.equals(e)</tt> to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * invoked for any element <tt>e</tt>.  Implementations are free to implement
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * optimizations whereby the <tt>equals</tt> invocation is avoided, for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * example, by first comparing the hash codes of the two elements.  (The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * {@link Object#hashCode()} specification guarantees that two objects with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * unequal hash codes cannot be equal.)  More generally, implementations of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * the various Collections Framework interfaces are free to take advantage of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * the specified behavior of underlying {@link Object} methods wherever the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * implementor deems it appropriate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 *
20491
eb2dfc7436af 7057785: Add note about optional support of recursive methods for self-referential Collection/Map
mduigou
parents: 20489
diff changeset
   107
 * <p>Some collection operations which perform recursive traversal of the
eb2dfc7436af 7057785: Add note about optional support of recursive methods for self-referential Collection/Map
mduigou
parents: 20489
diff changeset
   108
 * collection may fail with an exception for self-referential instances where
eb2dfc7436af 7057785: Add note about optional support of recursive methods for self-referential Collection/Map
mduigou
parents: 20489
diff changeset
   109
 * the collection directly or indirectly contains itself. This includes the
eb2dfc7436af 7057785: Add note about optional support of recursive methods for self-referential Collection/Map
mduigou
parents: 20489
diff changeset
   110
 * {@code clone()}, {@code equals()}, {@code hashCode()} and {@code toString()}
eb2dfc7436af 7057785: Add note about optional support of recursive methods for self-referential Collection/Map
mduigou
parents: 20489
diff changeset
   111
 * methods. Implementations may optionally handle the self-referential scenario,
eb2dfc7436af 7057785: Add note about optional support of recursive methods for self-referential Collection/Map
mduigou
parents: 20489
diff changeset
   112
 * however most current implementations do not do so.
eb2dfc7436af 7057785: Add note about optional support of recursive methods for self-referential Collection/Map
mduigou
parents: 20489
diff changeset
   113
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * <p>This interface is a member of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 *
16929
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   118
 * @implSpec
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   119
 * The default method implementations (inherited or otherwise) do not apply any
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   120
 * synchronization protocol.  If a {@code Collection} implementation has a
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   121
 * specific synchronization protocol, then it must override default
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   122
 * implementations to apply that protocol.
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   123
 *
4977
81902a400bbf 6929382: Various core classes in util and elsewhere are missing @param <T> tags
darcy
parents: 1818
diff changeset
   124
 * @param <E> the type of elements in this collection
81902a400bbf 6929382: Various core classes in util and elsewhere are missing @param <T> tags
darcy
parents: 1818
diff changeset
   125
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * @author  Josh Bloch
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * @author  Neal Gafter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * @see     Set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * @see     List
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * @see     Map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * @see     SortedSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 * @see     SortedMap
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 * @see     HashSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 * @see     TreeSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 * @see     ArrayList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 * @see     LinkedList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 * @see     Vector
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
 * @see     Collections
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 * @see     Arrays
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 * @see     AbstractCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
public interface Collection<E> extends Iterable<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    // Query Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * Returns the number of elements in this collection.  If this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * contains more than <tt>Integer.MAX_VALUE</tt> elements, returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * <tt>Integer.MAX_VALUE</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @return the number of elements in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    int size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * Returns <tt>true</tt> if this collection contains no elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * @return <tt>true</tt> if this collection contains no elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    boolean isEmpty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * Returns <tt>true</tt> if this collection contains the specified element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * More formally, returns <tt>true</tt> if and only if this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * contains at least one element <tt>e</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @param o element whose presence in this collection is to be tested
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * @return <tt>true</tt> if this collection contains the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     *         element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * @throws ClassCastException if the type of the specified element
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   173
     *         is incompatible with this collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   174
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * @throws NullPointerException if the specified element is null and this
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   176
     *         collection does not permit null elements
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   177
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    boolean contains(Object o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * Returns an iterator over the elements in this collection.  There are no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * guarantees concerning the order in which the elements are returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * (unless this collection is an instance of some class that provides a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * guarantee).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * @return an <tt>Iterator</tt> over the elements in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    Iterator<E> iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * Returns an array containing all of the elements in this collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * If this collection makes any guarantees as to what order its elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * are returned by its iterator, this method must return the elements in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * the same order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * <p>The returned array will be "safe" in that no references to it are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * maintained by this collection.  (In other words, this method must
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * allocate a new array even if this collection is backed by an array).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * The caller is thus free to modify the returned array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * <p>This method acts as bridge between array-based and collection-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * APIs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @return an array containing all of the elements in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    Object[] toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * Returns an array containing all of the elements in this collection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * the runtime type of the returned array is that of the specified array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * If the collection fits in the specified array, it is returned therein.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * Otherwise, a new array is allocated with the runtime type of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * specified array and the size of this collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * <p>If this collection fits in the specified array with room to spare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * (i.e., the array has more elements than this collection), the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * in the array immediately following the end of the collection is set to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * <tt>null</tt>.  (This is useful in determining the length of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * collection <i>only</i> if the caller knows that this collection does
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * not contain any <tt>null</tt> elements.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * <p>If this collection makes any guarantees as to what order its elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * are returned by its iterator, this method must return the elements in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * the same order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * <p>Like the {@link #toArray()} method, this method acts as bridge between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * array-based and collection-based APIs.  Further, this method allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * precise control over the runtime type of the output array, and may,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * under certain circumstances, be used to save allocation costs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * <p>Suppose <tt>x</tt> is a collection known to contain only strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * The following code can be used to dump the collection into a newly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * allocated array of <tt>String</tt>:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     *     String[] y = x.toArray(new String[0]);</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     * Note that <tt>toArray(new Object[0])</tt> is identical in function to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     * <tt>toArray()</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 18824
diff changeset
   242
     * @param <T> the runtime type of the array to contain the collection
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * @param a the array into which the elements of this collection are to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     *        stored, if it is big enough; otherwise, a new array of the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     *        runtime type is allocated for this purpose.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * @return an array containing all of the elements in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * @throws ArrayStoreException if the runtime type of the specified array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     *         is not a supertype of the runtime type of every element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *         this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * @throws NullPointerException if the specified array is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    <T> T[] toArray(T[] a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    // Modification Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * Ensures that this collection contains the specified element (optional
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * operation).  Returns <tt>true</tt> if this collection changed as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * result of the call.  (Returns <tt>false</tt> if this collection does
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * not permit duplicates and already contains the specified element.)<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * Collections that support this operation may place limitations on what
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * elements may be added to this collection.  In particular, some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * collections will refuse to add <tt>null</tt> elements, and others will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * impose restrictions on the type of elements that may be added.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * Collection classes should clearly specify in their documentation any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * restrictions on what elements may be added.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * If a collection refuses to add a particular element for any reason
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * other than that it already contains the element, it <i>must</i> throw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * an exception (rather than returning <tt>false</tt>).  This preserves
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * the invariant that a collection always contains the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * after this call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * @param e element whose presence in this collection is to be ensured
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * @return <tt>true</tt> if this collection changed as a result of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     *         call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * @throws UnsupportedOperationException if the <tt>add</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     *         is not supported by this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * @throws ClassCastException if the class of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     *         prevents it from being added to this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * @throws NullPointerException if the specified element is null and this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     *         collection does not permit null elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * @throws IllegalArgumentException if some property of the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     *         prevents it from being added to this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * @throws IllegalStateException if the element cannot be added at this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     *         time due to insertion restrictions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    boolean add(E e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * Removes a single instance of the specified element from this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * collection, if it is present (optional operation).  More formally,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * removes an element <tt>e</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>, if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * this collection contains one or more such elements.  Returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * <tt>true</tt> if this collection contained the specified element (or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * equivalently, if this collection changed as a result of the call).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * @param o element to be removed from this collection, if present
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * @return <tt>true</tt> if an element was removed as a result of this call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * @throws ClassCastException if the type of the specified element
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   303
     *         is incompatible with this collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   304
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * @throws NullPointerException if the specified element is null and this
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   306
     *         collection does not permit null elements
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   307
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * @throws UnsupportedOperationException if the <tt>remove</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     *         is not supported by this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    boolean remove(Object o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    // Bulk Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * Returns <tt>true</tt> if this collection contains all of the elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * in the specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * @param  c collection to be checked for containment in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * @return <tt>true</tt> if this collection contains all of the elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     *         in the specified collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * @throws ClassCastException if the types of one or more elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     *         in the specified collection are incompatible with this
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   325
     *         collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   326
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * @throws NullPointerException if the specified collection contains one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     *         or more null elements and this collection does not permit null
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   329
     *         elements
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   330
     *         (<a href="#optional-restrictions">optional</a>),
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   331
     *         or if the specified collection is null.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @see    #contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    boolean containsAll(Collection<?> c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * Adds all of the elements in the specified collection to this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * (optional operation).  The behavior of this operation is undefined if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * the specified collection is modified while the operation is in progress.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * (This implies that the behavior of this call is undefined if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * specified collection is this collection, and this collection is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * nonempty.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * @param c collection containing elements to be added to this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * @return <tt>true</tt> if this collection changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * @throws UnsupportedOperationException if the <tt>addAll</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     *         is not supported by this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * @throws ClassCastException if the class of an element of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     *         collection prevents it from being added to this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * @throws NullPointerException if the specified collection contains a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     *         null element and this collection does not permit null elements,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     *         or if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * @throws IllegalArgumentException if some property of an element of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     *         specified collection prevents it from being added to this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     *         collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * @throws IllegalStateException if not all the elements can be added at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     *         this time due to insertion restrictions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * @see #add(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    boolean addAll(Collection<? extends E> c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * Removes all of this collection's elements that are also contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * specified collection (optional operation).  After this call returns,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * this collection will contain no elements in common with the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * @param c collection containing elements to be removed from this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * @return <tt>true</tt> if this collection changed as a result of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     *         call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * @throws UnsupportedOperationException if the <tt>removeAll</tt> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     *         is not supported by this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * @throws ClassCastException if the types of one or more elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     *         in this collection are incompatible with the specified
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   375
     *         collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   376
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * @throws NullPointerException if this collection contains one or more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     *         null elements and the specified collection does not support
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   379
     *         null elements
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   380
     *         (<a href="#optional-restrictions">optional</a>),
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   381
     *         or if the specified collection is null
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * @see #remove(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * @see #contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    boolean removeAll(Collection<?> c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    /**
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   388
     * Removes all of the elements of this collection that satisfy the given
20476
2d01671506ba 8023339: Refined Collection.removeIf UOE conditions
mduigou
parents: 19850
diff changeset
   389
     * predicate.  Errors or runtime exceptions thrown during iteration or by
2d01671506ba 8023339: Refined Collection.removeIf UOE conditions
mduigou
parents: 19850
diff changeset
   390
     * the predicate are relayed to the caller.
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   391
     *
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   392
     * @implSpec
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   393
     * The default implementation traverses all elements of the collection using
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   394
     * its {@link #iterator}.  Each matching element is removed using
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   395
     * {@link Iterator#remove()}.  If the collection's iterator does not
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   396
     * support removal then an {@code UnsupportedOperationException} will be
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   397
     * thrown on the first matching element.
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   398
     *
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   399
     * @param filter a predicate which returns {@code true} for elements to be
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   400
     *        removed
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   401
     * @return {@code true} if any elements were removed
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   402
     * @throws NullPointerException if the specified filter is null
20476
2d01671506ba 8023339: Refined Collection.removeIf UOE conditions
mduigou
parents: 19850
diff changeset
   403
     * @throws UnsupportedOperationException if elements cannot be removed
2d01671506ba 8023339: Refined Collection.removeIf UOE conditions
mduigou
parents: 19850
diff changeset
   404
     *         from this collection.  Implementations may throw this exception if a
2d01671506ba 8023339: Refined Collection.removeIf UOE conditions
mduigou
parents: 19850
diff changeset
   405
     *         matching element cannot be removed or if, in general, removal is not
2d01671506ba 8023339: Refined Collection.removeIf UOE conditions
mduigou
parents: 19850
diff changeset
   406
     *         supported.
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   407
     * @since 1.8
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   408
     */
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   409
    default boolean removeIf(Predicate<? super E> filter) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   410
        Objects.requireNonNull(filter);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   411
        boolean removed = false;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   412
        final Iterator<E> each = iterator();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   413
        while (each.hasNext()) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   414
            if (filter.test(each.next())) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   415
                each.remove();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   416
                removed = true;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   417
            }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   418
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   419
        return removed;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   420
    }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   421
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   422
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * Retains only the elements in this collection that are contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * specified collection (optional operation).  In other words, removes from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * this collection all of its elements that are not contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * @param c collection containing elements to be retained in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * @return <tt>true</tt> if this collection changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * @throws UnsupportedOperationException if the <tt>retainAll</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     *         is not supported by this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * @throws ClassCastException if the types of one or more elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     *         in this collection are incompatible with the specified
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   434
     *         collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   435
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * @throws NullPointerException if this collection contains one or more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     *         null elements and the specified collection does not permit null
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   438
     *         elements
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   439
     *         (<a href="#optional-restrictions">optional</a>),
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   440
     *         or if the specified collection is null
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * @see #remove(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * @see #contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    boolean retainAll(Collection<?> c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * Removes all of the elements from this collection (optional operation).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * The collection will be empty after this method returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * @throws UnsupportedOperationException if the <tt>clear</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     *         is not supported by this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    void clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    // Comparison and hashing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * Compares the specified object with this collection for equality. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     * While the <tt>Collection</tt> interface adds no stipulations to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * general contract for the <tt>Object.equals</tt>, programmers who
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     * implement the <tt>Collection</tt> interface "directly" (in other words,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * create a class that is a <tt>Collection</tt> but is not a <tt>Set</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * or a <tt>List</tt>) must exercise care if they choose to override the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * <tt>Object.equals</tt>.  It is not necessary to do so, and the simplest
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * course of action is to rely on <tt>Object</tt>'s implementation, but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * the implementor may wish to implement a "value comparison" in place of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * the default "reference comparison."  (The <tt>List</tt> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     * <tt>Set</tt> interfaces mandate such value comparisons.)<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * The general contract for the <tt>Object.equals</tt> method states that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * equals must be symmetric (in other words, <tt>a.equals(b)</tt> if and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * only if <tt>b.equals(a)</tt>).  The contracts for <tt>List.equals</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * and <tt>Set.equals</tt> state that lists are only equal to other lists,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * and sets to other sets.  Thus, a custom <tt>equals</tt> method for a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * collection class that implements neither the <tt>List</tt> nor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * <tt>Set</tt> interface must return <tt>false</tt> when this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * is compared to any list or set.  (By the same logic, it is not possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * to write a class that correctly implements both the <tt>Set</tt> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * <tt>List</tt> interfaces.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * @param o object to be compared for equality with this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     * @return <tt>true</tt> if the specified object is equal to this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * @see Object#equals(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * @see Set#equals(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * @see List#equals(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
    boolean equals(Object o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     * Returns the hash code value for this collection.  While the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * <tt>Collection</tt> interface adds no stipulations to the general
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * contract for the <tt>Object.hashCode</tt> method, programmers should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * take note that any class that overrides the <tt>Object.equals</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * method must also override the <tt>Object.hashCode</tt> method in order
1818
7847313afae6 6792545: Typo in java.util.Collection JavaDoc
darcy
parents: 2
diff changeset
   499
     * to satisfy the general contract for the <tt>Object.hashCode</tt> method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * In particular, <tt>c1.equals(c2)</tt> implies that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * <tt>c1.hashCode()==c2.hashCode()</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * @return the hash code value for this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * @see Object#hashCode()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * @see Object#equals(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
    int hashCode();
16929
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   509
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   510
    /**
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   511
     * Creates a {@link Spliterator} over the elements in this collection.
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   512
     *
20489
cce02e4a6cbe 8024408: Specifications for Collection/List/Set/SortedSet.spliterator() need to document if all the (subclass) instances are required to return SIZED spliterators
psandoz
parents: 20476
diff changeset
   513
     * Implementations should document characteristic values reported by the
cce02e4a6cbe 8024408: Specifications for Collection/List/Set/SortedSet.spliterator() need to document if all the (subclass) instances are required to return SIZED spliterators
psandoz
parents: 20476
diff changeset
   514
     * spliterator.  Such characteristic values are not required to be reported
cce02e4a6cbe 8024408: Specifications for Collection/List/Set/SortedSet.spliterator() need to document if all the (subclass) instances are required to return SIZED spliterators
psandoz
parents: 20476
diff changeset
   515
     * if the spliterator reports {@link Spliterator#SIZED} and this collection
cce02e4a6cbe 8024408: Specifications for Collection/List/Set/SortedSet.spliterator() need to document if all the (subclass) instances are required to return SIZED spliterators
psandoz
parents: 20476
diff changeset
   516
     * contains no elements.
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   517
     *
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   518
     * <p>The default implementation should be overridden by subclasses that
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   519
     * can return a more efficient spliterator.  In order to
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   520
     * preserve expected laziness behavior for the {@link #stream()} and
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   521
     * {@link #parallelStream()}} methods, spliterators should either have the
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   522
     * characteristic of {@code IMMUTABLE} or {@code CONCURRENT}, or be
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   523
     * <em><a href="Spliterator.html#binding">late-binding</a></em>.
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   524
     * If none of these is practical, the overriding class should describe the
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   525
     * spliterator's documented policy of binding and structural interference,
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   526
     * and should override the {@link #stream()} and {@link #parallelStream()}
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   527
     * methods to create streams using a {@code Supplier} of the spliterator,
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   528
     * as in:
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   529
     * <pre>{@code
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   530
     *     Stream<E> s = StreamSupport.stream(() -> spliterator(), spliteratorCharacteristics)
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   531
     * }</pre>
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   532
     * <p>These requirements ensure that streams produced by the
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   533
     * {@link #stream()} and {@link #parallelStream()} methods will reflect the
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   534
     * contents of the collection as of initiation of the terminal stream
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   535
     * operation.
16929
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   536
     *
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   537
     * @implSpec
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   538
     * The default implementation creates a
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   539
     * <em><a href="Spliterator.html#binding">late-binding</a></em> spliterator
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   540
     * from the collections's {@code Iterator}.  The spliterator inherits the
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   541
     * <em>fail-fast</em> properties of the collection's iterator.
20489
cce02e4a6cbe 8024408: Specifications for Collection/List/Set/SortedSet.spliterator() need to document if all the (subclass) instances are required to return SIZED spliterators
psandoz
parents: 20476
diff changeset
   542
     * <p>
cce02e4a6cbe 8024408: Specifications for Collection/List/Set/SortedSet.spliterator() need to document if all the (subclass) instances are required to return SIZED spliterators
psandoz
parents: 20476
diff changeset
   543
     * The created {@code Spliterator} reports {@link Spliterator#SIZED}.
16929
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   544
     *
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   545
     * @implNote
20489
cce02e4a6cbe 8024408: Specifications for Collection/List/Set/SortedSet.spliterator() need to document if all the (subclass) instances are required to return SIZED spliterators
psandoz
parents: 20476
diff changeset
   546
     * The created {@code Spliterator} additionally reports
16929
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   547
     * {@link Spliterator#SUBSIZED}.
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   548
     *
19424
c4524285927f 8022797: Clarify spliterator characteristics for collections containing no elements
psandoz
parents: 18829
diff changeset
   549
     * <p>If a spliterator covers no elements then the reporting of additional
c4524285927f 8022797: Clarify spliterator characteristics for collections containing no elements
psandoz
parents: 18829
diff changeset
   550
     * characteristic values, beyond that of {@code SIZED} and {@code SUBSIZED},
c4524285927f 8022797: Clarify spliterator characteristics for collections containing no elements
psandoz
parents: 18829
diff changeset
   551
     * does not aid clients to control, specialize or simplify computation.
c4524285927f 8022797: Clarify spliterator characteristics for collections containing no elements
psandoz
parents: 18829
diff changeset
   552
     * However, this does enable shared use of an immutable and empty
c4524285927f 8022797: Clarify spliterator characteristics for collections containing no elements
psandoz
parents: 18829
diff changeset
   553
     * spliterator instance (see {@link Spliterators#emptySpliterator()}) for
c4524285927f 8022797: Clarify spliterator characteristics for collections containing no elements
psandoz
parents: 18829
diff changeset
   554
     * empty collections, and enables clients to determine if such a spliterator
c4524285927f 8022797: Clarify spliterator characteristics for collections containing no elements
psandoz
parents: 18829
diff changeset
   555
     * covers no elements.
c4524285927f 8022797: Clarify spliterator characteristics for collections containing no elements
psandoz
parents: 18829
diff changeset
   556
     *
16929
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   557
     * @return a {@code Spliterator} over the elements in this collection
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   558
     * @since 1.8
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   559
     */
19850
93b368e54c1c 8011916: Spec update for java.util.stream
henryjen
parents: 19424
diff changeset
   560
    @Override
16929
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   561
    default Spliterator<E> spliterator() {
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   562
        return Spliterators.spliterator(this, 0);
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   563
    }
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   564
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   565
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   566
     * Returns a sequential {@code Stream} with this collection as its source.
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   567
     *
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   568
     * <p>This method should be overridden when the {@link #spliterator()}
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   569
     * method cannot return a spliterator that is {@code IMMUTABLE},
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   570
     * {@code CONCURRENT}, or <em>late-binding</em>. (See {@link #spliterator()}
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   571
     * for details.)
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   572
     *
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   573
     * @implSpec
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   574
     * The default implementation creates a sequential {@code Stream} from the
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   575
     * collection's {@code Spliterator}.
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   576
     *
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   577
     * @return a sequential {@code Stream} over the elements in this collection
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   578
     * @since 1.8
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   579
     */
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   580
    default Stream<E> stream() {
18822
4b6be7c19547 8019395: Consolidate StreamSupport.{stream,parallelStream} into a single method
psandoz
parents: 17182
diff changeset
   581
        return StreamSupport.stream(spliterator(), false);
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   582
    }
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   583
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   584
    /**
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   585
     * Returns a possibly parallel {@code Stream} with this collection as its
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   586
     * source.  It is allowable for this method to return a sequential stream.
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   587
     *
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   588
     * <p>This method should be overridden when the {@link #spliterator()}
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   589
     * method cannot return a spliterator that is {@code IMMUTABLE},
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   590
     * {@code CONCURRENT}, or <em>late-binding</em>. (See {@link #spliterator()}
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   591
     * for details.)
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   592
     *
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   593
     * @implSpec
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   594
     * The default implementation creates a parallel {@code Stream} from the
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   595
     * collection's {@code Spliterator}.
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   596
     *
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   597
     * @return a possibly parallel {@code Stream} over the elements in this
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   598
     * collection
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   599
     * @since 1.8
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   600
     */
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   601
    default Stream<E> parallelStream() {
18822
4b6be7c19547 8019395: Consolidate StreamSupport.{stream,parallelStream} into a single method
psandoz
parents: 17182
diff changeset
   602
        return StreamSupport.stream(spliterator(), true);
17182
b786c0de868c 8011920: Main streams implementation
mduigou
parents: 17166
diff changeset
   603
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
}