jdk/src/share/classes/java/util/Collection.java
author briangoetz
Tue, 16 Apr 2013 13:51:53 -0400
changeset 16929 c984ae5655cb
parent 14342 8435a30053c1
child 17166 c83a0fa44906
permissions -rw-r--r--
8010096: Initial java.util.Spliterator putback Reviewed-by: mduigou, alanb, chegar, darcy Contributed-by: Paul Sandoz <paul.sandoz@oracle.com>, Brian Goetz <brian.goetz@oracle.com>, Doug Lea <dl@cs.oswego.edu>
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * The root interface in the <i>collection hierarchy</i>.  A collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * represents a group of objects, known as its <i>elements</i>.  Some
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * collections allow duplicate elements and others do not.  Some are ordered
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * and others unordered.  The JDK does not provide any <i>direct</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * implementations of this interface: it provides implementations of more
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * specific subinterfaces like <tt>Set</tt> and <tt>List</tt>.  This interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * is typically used to pass collections around and manipulate them where
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * maximum generality is desired.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * <p><i>Bags</i> or <i>multisets</i> (unordered collections that may contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * duplicate elements) should implement this interface directly.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * <p>All general-purpose <tt>Collection</tt> implementation classes (which
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * typically implement <tt>Collection</tt> indirectly through one of its
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * subinterfaces) should provide two "standard" constructors: a void (no
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * arguments) constructor, which creates an empty collection, and a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * constructor with a single argument of type <tt>Collection</tt>, which
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * creates a new collection with the same elements as its argument.  In
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * effect, the latter constructor allows the user to copy any collection,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * producing an equivalent collection of the desired implementation type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * There is no way to enforce this convention (as interfaces cannot contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * constructors) but all of the general-purpose <tt>Collection</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * implementations in the Java platform libraries comply.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * <p>The "destructive" methods contained in this interface, that is, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * methods that modify the collection on which they operate, are specified to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * throw <tt>UnsupportedOperationException</tt> if this collection does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * support the operation.  If this is the case, these methods may, but are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * required to, throw an <tt>UnsupportedOperationException</tt> if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * invocation would have no effect on the collection.  For example, invoking
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * the {@link #addAll(Collection)} method on an unmodifiable collection may,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * but is not required to, throw the exception if the collection to be added
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
    63
 * <p><a name="optional-restrictions"/>
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
    64
 * Some collection implementations have restrictions on the elements that
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * they may contain.  For example, some implementations prohibit null elements,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * and some have restrictions on the types of their elements.  Attempting to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * add an ineligible element throws an unchecked exception, typically
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * <tt>NullPointerException</tt> or <tt>ClassCastException</tt>.  Attempting
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * to query the presence of an ineligible element may throw an exception,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * or it may simply return false; some implementations will exhibit the former
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * behavior and some will exhibit the latter.  More generally, attempting an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * operation on an ineligible element whose completion would not result in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * the insertion of an ineligible element into the collection may throw an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * exception or it may succeed, at the option of the implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * Such exceptions are marked as "optional" in the specification for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * <p>It is up to each collection to determine its own synchronization
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * policy.  In the absence of a stronger guarantee by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * implementation, undefined behavior may result from the invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * of any method on a collection that is being mutated by another
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * thread; this includes direct invocations, passing the collection to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * a method that might perform invocations, and using an existing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * iterator to examine the collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * <p>Many methods in Collections Framework interfaces are defined in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * terms of the {@link Object#equals(Object) equals} method.  For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * the specification for the {@link #contains(Object) contains(Object o)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * method says: "returns <tt>true</tt> if and only if this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * contains at least one element <tt>e</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * <tt>(o==null ? e==null : o.equals(e))</tt>."  This specification should
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * <i>not</i> be construed to imply that invoking <tt>Collection.contains</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * with a non-null argument <tt>o</tt> will cause <tt>o.equals(e)</tt> to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * invoked for any element <tt>e</tt>.  Implementations are free to implement
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * optimizations whereby the <tt>equals</tt> invocation is avoided, for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * example, by first comparing the hash codes of the two elements.  (The
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * {@link Object#hashCode()} specification guarantees that two objects with
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * unequal hash codes cannot be equal.)  More generally, implementations of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * the various Collections Framework interfaces are free to take advantage of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * the specified behavior of underlying {@link Object} methods wherever the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * implementor deems it appropriate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * <p>This interface is a member of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 *
16929
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   107
 * @implSpec
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   108
 * The default method implementations (inherited or otherwise) do not apply any
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   109
 * synchronization protocol.  If a {@code Collection} implementation has a
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   110
 * specific synchronization protocol, then it must override default
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   111
 * implementations to apply that protocol.
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   112
 *
4977
81902a400bbf 6929382: Various core classes in util and elsewhere are missing @param <T> tags
darcy
parents: 1818
diff changeset
   113
 * @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
   114
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * @author  Josh Bloch
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * @author  Neal Gafter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * @see     Set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * @see     List
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 * @see     Map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * @see     SortedSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * @see     SortedMap
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * @see     HashSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * @see     TreeSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * @see     ArrayList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * @see     LinkedList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * @see     Vector
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * @see     Collections
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * @see     Arrays
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * @see     AbstractCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
public interface Collection<E> extends Iterable<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    // Query Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * Returns the number of elements in this collection.  If this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * contains more than <tt>Integer.MAX_VALUE</tt> elements, returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * <tt>Integer.MAX_VALUE</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @return the number of elements in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    int size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * Returns <tt>true</tt> if this collection contains no elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * @return <tt>true</tt> if this collection contains no elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    boolean isEmpty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * Returns <tt>true</tt> if this collection contains the specified element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * More formally, returns <tt>true</tt> if and only if this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * contains at least one element <tt>e</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * @param o element whose presence in this collection is to be tested
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * @return <tt>true</tt> if this collection contains the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     *         element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * @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
   162
     *         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
   163
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * @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
   165
     *         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
   166
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    boolean contains(Object o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * Returns an iterator over the elements in this collection.  There are no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * guarantees concerning the order in which the elements are returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * (unless this collection is an instance of some class that provides a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * guarantee).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @return an <tt>Iterator</tt> over the elements in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    Iterator<E> iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * Returns an array containing all of the elements in this collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * If this collection makes any guarantees as to what order its elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * are returned by its iterator, this method must return the elements in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * the same order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * <p>The returned array will be "safe" in that no references to it are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * maintained by this collection.  (In other words, this method must
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * allocate a new array even if this collection is backed by an array).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * The caller is thus free to modify the returned array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * <p>This method acts as bridge between array-based and collection-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * APIs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * @return an array containing all of the elements in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    Object[] toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * Returns an array containing all of the elements in this collection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * the runtime type of the returned array is that of the specified array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * If the collection fits in the specified array, it is returned therein.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * Otherwise, a new array is allocated with the runtime type of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * specified array and the size of this collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * <p>If this collection fits in the specified array with room to spare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * (i.e., the array has more elements than this collection), the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * in the array immediately following the end of the collection is set to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * <tt>null</tt>.  (This is useful in determining the length of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * collection <i>only</i> if the caller knows that this collection does
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * not contain any <tt>null</tt> elements.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * <p>If this collection makes any guarantees as to what order its elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * are returned by its iterator, this method must return the elements in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * the same order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * <p>Like the {@link #toArray()} method, this method acts as bridge between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * array-based and collection-based APIs.  Further, this method allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * precise control over the runtime type of the output array, and may,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * under certain circumstances, be used to save allocation costs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * <p>Suppose <tt>x</tt> is a collection known to contain only strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * The following code can be used to dump the collection into a newly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * allocated array of <tt>String</tt>:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     *     String[] y = x.toArray(new String[0]);</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * Note that <tt>toArray(new Object[0])</tt> is identical in function to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * <tt>toArray()</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * @param a the array into which the elements of this collection are to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     *        stored, if it is big enough; otherwise, a new array of the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     *        runtime type is allocated for this purpose.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * @return an array containing all of the elements in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * @throws ArrayStoreException if the runtime type of the specified array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     *         is not a supertype of the runtime type of every element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     *         this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * @throws NullPointerException if the specified array is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    <T> T[] toArray(T[] a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    // Modification Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * Ensures that this collection contains the specified element (optional
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * operation).  Returns <tt>true</tt> if this collection changed as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * result of the call.  (Returns <tt>false</tt> if this collection does
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * not permit duplicates and already contains the specified element.)<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * Collections that support this operation may place limitations on what
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * elements may be added to this collection.  In particular, some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * collections will refuse to add <tt>null</tt> elements, and others will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * impose restrictions on the type of elements that may be added.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * Collection classes should clearly specify in their documentation any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * restrictions on what elements may be added.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * If a collection refuses to add a particular element for any reason
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * other than that it already contains the element, it <i>must</i> throw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * an exception (rather than returning <tt>false</tt>).  This preserves
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * the invariant that a collection always contains the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * after this call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * @param e element whose presence in this collection is to be ensured
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * @return <tt>true</tt> if this collection changed as a result of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     *         call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * @throws UnsupportedOperationException if the <tt>add</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     *         is not supported by this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * @throws ClassCastException if the class of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     *         prevents it from being added to this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * @throws NullPointerException if the specified element is null and this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     *         collection does not permit null elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * @throws IllegalArgumentException if some property of the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     *         prevents it from being added to this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * @throws IllegalStateException if the element cannot be added at this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     *         time due to insertion restrictions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    boolean add(E e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * Removes a single instance of the specified element from this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * collection, if it is present (optional operation).  More formally,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * removes an element <tt>e</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>, if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * this collection contains one or more such elements.  Returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * <tt>true</tt> if this collection contained the specified element (or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * equivalently, if this collection changed as a result of the call).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * @param o element to be removed from this collection, if present
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * @return <tt>true</tt> if an element was removed as a result of this call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * @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
   291
     *         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
   292
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * @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
   294
     *         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
   295
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * @throws UnsupportedOperationException if the <tt>remove</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     *         is not supported by this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    boolean remove(Object o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    // Bulk Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * Returns <tt>true</tt> if this collection contains all of the elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * in the specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * @param  c collection to be checked for containment in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * @return <tt>true</tt> if this collection contains all of the elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     *         in the specified collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * @throws ClassCastException if the types of one or more elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     *         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
   313
     *         collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   314
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * @throws NullPointerException if the specified collection contains one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     *         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
   317
     *         elements
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   318
     *         (<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
   319
     *         or if the specified collection is null.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * @see    #contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    boolean containsAll(Collection<?> c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * Adds all of the elements in the specified collection to this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * (optional operation).  The behavior of this operation is undefined if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * the specified collection is modified while the operation is in progress.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * (This implies that the behavior of this call is undefined if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * specified collection is this collection, and this collection is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * nonempty.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @param c collection containing elements to be added to this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * @return <tt>true</tt> if this collection changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * @throws UnsupportedOperationException if the <tt>addAll</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     *         is not supported by this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     * @throws ClassCastException if the class of an element of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     *         collection prevents it from being added to this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * @throws NullPointerException if the specified collection contains a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     *         null element and this collection does not permit null elements,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     *         or if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * @throws IllegalArgumentException if some property of an element of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     *         specified collection prevents it from being added to this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     *         collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * @throws IllegalStateException if not all the elements can be added at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     *         this time due to insertion restrictions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * @see #add(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    boolean addAll(Collection<? extends E> c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * Removes all of this collection's elements that are also contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * specified collection (optional operation).  After this call returns,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * this collection will contain no elements in common with the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * @param c collection containing elements to be removed from this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * @return <tt>true</tt> if this collection changed as a result of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     *         call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * @throws UnsupportedOperationException if the <tt>removeAll</tt> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     *         is not supported by this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * @throws ClassCastException if the types of one or more elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     *         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
   363
     *         collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   364
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * @throws NullPointerException if this collection contains one or more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     *         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
   367
     *         null elements
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   368
     *         (<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
   369
     *         or if the specified collection is null
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * @see #remove(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * @see #contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    boolean removeAll(Collection<?> c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * Retains only the elements in this collection that are contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * specified collection (optional operation).  In other words, removes from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * this collection all of its elements that are not contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * @param c collection containing elements to be retained in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * @return <tt>true</tt> if this collection changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * @throws UnsupportedOperationException if the <tt>retainAll</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     *         is not supported by this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * @throws ClassCastException if the types of one or more elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     *         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
   387
     *         collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   388
     *         (<a href="#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * @throws NullPointerException if this collection contains one or more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     *         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
   391
     *         elements
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   392
     *         (<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
   393
     *         or if the specified collection is null
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * @see #remove(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * @see #contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
    boolean retainAll(Collection<?> c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * Removes all of the elements from this collection (optional operation).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * The collection will be empty after this method returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * @throws UnsupportedOperationException if the <tt>clear</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     *         is not supported by this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    void clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    // Comparison and hashing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     * Compares the specified object with this collection for equality. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     * While the <tt>Collection</tt> interface adds no stipulations to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * general contract for the <tt>Object.equals</tt>, programmers who
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * implement the <tt>Collection</tt> interface "directly" (in other words,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * create a class that is a <tt>Collection</tt> but is not a <tt>Set</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * or a <tt>List</tt>) must exercise care if they choose to override the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * <tt>Object.equals</tt>.  It is not necessary to do so, and the simplest
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * course of action is to rely on <tt>Object</tt>'s implementation, but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * the implementor may wish to implement a "value comparison" in place of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * the default "reference comparison."  (The <tt>List</tt> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * <tt>Set</tt> interfaces mandate such value comparisons.)<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * The general contract for the <tt>Object.equals</tt> method states that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * equals must be symmetric (in other words, <tt>a.equals(b)</tt> if and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * only if <tt>b.equals(a)</tt>).  The contracts for <tt>List.equals</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * and <tt>Set.equals</tt> state that lists are only equal to other lists,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * and sets to other sets.  Thus, a custom <tt>equals</tt> method for a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * collection class that implements neither the <tt>List</tt> nor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * <tt>Set</tt> interface must return <tt>false</tt> when this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * is compared to any list or set.  (By the same logic, it is not possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * to write a class that correctly implements both the <tt>Set</tt> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * <tt>List</tt> interfaces.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * @param o object to be compared for equality with this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * @return <tt>true</tt> if the specified object is equal to this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * @see Object#equals(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * @see Set#equals(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * @see List#equals(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    boolean equals(Object o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * Returns the hash code value for this collection.  While the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * <tt>Collection</tt> interface adds no stipulations to the general
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * contract for the <tt>Object.hashCode</tt> method, programmers should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * take note that any class that overrides the <tt>Object.equals</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * 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
   452
     * to satisfy the general contract for the <tt>Object.hashCode</tt> method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * In particular, <tt>c1.equals(c2)</tt> implies that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * <tt>c1.hashCode()==c2.hashCode()</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * @return the hash code value for this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     * @see Object#hashCode()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * @see Object#equals(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    int hashCode();
16929
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   462
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   463
    /**
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   464
     * Creates a {@link Spliterator} over the elements in this collection.
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   465
     *
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   466
     * <p>The {@code Spliterator} reports {@link Spliterator#SIZED}.
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   467
     * Implementations should document the reporting of additional
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   468
     * characteristic values.
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   469
     *
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   470
     * @implSpec
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   471
     * The default implementation creates a
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   472
     * <em><a href="Spliterator.html#binding">late-binding</a></em> spliterator
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   473
     * from the collections's {@code Iterator}.  The spliterator inherits the
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   474
     * <em>fail-fast</em> properties of the collection's iterator.
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   475
     *
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   476
     * @implNote
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   477
     * The created {@code Spliterator} additionally reports
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   478
     * {@link Spliterator#SUBSIZED}.
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   479
     *
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   480
     * @return a {@code Spliterator} over the elements in this collection
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   481
     * @since 1.8
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   482
     */
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   483
    default Spliterator<E> spliterator() {
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   484
        return Spliterators.spliterator(this, 0);
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   485
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
}