jdk/src/share/classes/java/util/List.java
author psandoz
Thu, 16 Jan 2014 10:27:57 +0100
changeset 22285 6c67737a5ac0
parent 21339 20e8b81964d5
permissions -rw-r--r--
8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator ) Reviewed-by: mduigou
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
22285
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
     2
 * Copyright (c) 1997, 2014, 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.UnaryOperator;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
    29
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * An ordered collection (also known as a <i>sequence</i>).  The user of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * interface has precise control over where in the list each element is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * inserted.  The user can access elements by their integer index (position in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * the list), and search for elements in the list.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * Unlike sets, lists typically allow duplicate elements.  More formally,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * lists typically allow pairs of elements <tt>e1</tt> and <tt>e2</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * such that <tt>e1.equals(e2)</tt>, and they typically allow multiple
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * null elements if they allow null elements at all.  It is not inconceivable
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * that someone might wish to implement a list that prohibits duplicates, by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * throwing runtime exceptions when the user attempts to insert them, but we
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * expect this usage to be rare.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * The <tt>List</tt> interface places additional stipulations, beyond those
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * specified in the <tt>Collection</tt> interface, on the contracts of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <tt>iterator</tt>, <tt>add</tt>, <tt>remove</tt>, <tt>equals</tt>, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <tt>hashCode</tt> methods.  Declarations for other inherited methods are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * also included here for convenience.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * The <tt>List</tt> interface provides four methods for positional (indexed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * access to list elements.  Lists (like Java arrays) are zero based.  Note
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * that these operations may execute in time proportional to the index value
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * for some implementations (the <tt>LinkedList</tt> class, for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * example). Thus, iterating over the elements in a list is typically
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * preferable to indexing through it if the caller does not know the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * implementation.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * The <tt>List</tt> interface provides a special iterator, called a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * <tt>ListIterator</tt>, that allows element insertion and replacement, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * bidirectional access in addition to the normal operations that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * <tt>Iterator</tt> interface provides.  A method is provided to obtain a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * list iterator that starts at a specified position in the list.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * The <tt>List</tt> interface provides two methods to search for a specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * object.  From a performance standpoint, these methods should be used with
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * caution.  In many implementations they will perform costly linear
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * searches.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * The <tt>List</tt> interface provides two methods to efficiently insert and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * remove multiple elements at an arbitrary point in the list.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * Note: While it is permissible for lists to contain themselves as elements,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * extreme caution is advised: the <tt>equals</tt> and <tt>hashCode</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * methods are no longer well defined on such a list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * <p>Some list implementations have restrictions on the elements that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * they may contain.  For example, some implementations prohibit null elements,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * and some have restrictions on the types of their elements.  Attempting to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * add an ineligible element throws an unchecked exception, typically
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * <tt>NullPointerException</tt> or <tt>ClassCastException</tt>.  Attempting
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * to query the presence of an ineligible element may throw an exception,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * or it may simply return false; some implementations will exhibit the former
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * behavior and some will exhibit the latter.  More generally, attempting an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * operation on an ineligible element whose completion would not result in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * the insertion of an ineligible element into the list may throw an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * exception or it may succeed, at the option of the implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * Such exceptions are marked as "optional" in the specification for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * <p>This interface is a member of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 *
4977
81902a400bbf 6929382: Various core classes in util and elsewhere are missing @param <T> tags
darcy
parents: 2
diff changeset
    94
 * @param <E> the type of elements in this list
81902a400bbf 6929382: Various core classes in util and elsewhere are missing @param <T> tags
darcy
parents: 2
diff changeset
    95
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * @author  Josh Bloch
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * @author  Neal Gafter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * @see Collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * @see Set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * @see ArrayList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * @see LinkedList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * @see Vector
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * @see Arrays#asList(Object[])
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * @see Collections#nCopies(int, Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * @see Collections#EMPTY_LIST
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * @see AbstractList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * @see AbstractSequentialList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
public interface List<E> extends Collection<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    // Query Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * Returns the number of elements in this list.  If this list contains
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * more than <tt>Integer.MAX_VALUE</tt> elements, returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * <tt>Integer.MAX_VALUE</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * @return the number of elements in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    int size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * Returns <tt>true</tt> if this list contains no elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * @return <tt>true</tt> if this list contains no elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    boolean isEmpty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * Returns <tt>true</tt> if this list contains the specified element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * More formally, returns <tt>true</tt> if and only if this list contains
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * at least one element <tt>e</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @param o element whose presence in this list is to be tested
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * @return <tt>true</tt> if this list contains the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @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
   139
     *         is incompatible with this list
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   140
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @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
   142
     *         list 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
   143
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    boolean contains(Object o);
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 an iterator over the elements in this list in proper sequence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @return an iterator over the elements in this list in proper sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    Iterator<E> iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * Returns an array containing all of the elements in this list in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * sequence (from first to last element).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * <p>The returned array will be "safe" in that no references to it are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * maintained by this list.  (In other words, this method must
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * allocate a new array even if this list is backed by an array).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * The caller is thus free to modify the returned array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * <p>This method acts as bridge between array-based and collection-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * APIs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * @return an array containing all of the elements in this list in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     *         sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * @see Arrays#asList(Object[])
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    Object[] toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * Returns an array containing all of the elements in this list in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * proper sequence (from first to last element); the runtime type of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * the returned array is that of the specified array.  If the list fits
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * in the specified array, it is returned therein.  Otherwise, a new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * array is allocated with the runtime type of the specified array and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * the size of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * <p>If the list fits in the specified array with room to spare (i.e.,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * the array has more elements than the list), the element in the array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * immediately following the end of the list is set to <tt>null</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * (This is useful in determining the length of the list <i>only</i> if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * the caller knows that the list does not contain any null elements.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * <p>Like the {@link #toArray()} method, this method acts as bridge between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * array-based and collection-based APIs.  Further, this method allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * precise control over the runtime type of the output array, and may,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * under certain circumstances, be used to save allocation costs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * <p>Suppose <tt>x</tt> is a list known to contain only strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * The following code can be used to dump the list into a newly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * allocated array of <tt>String</tt>:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     *
21339
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   195
     * <pre>{@code
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   196
     *     String[] y = x.toArray(new String[0]);
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   197
     * }</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * Note that <tt>toArray(new Object[0])</tt> is identical in function to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * <tt>toArray()</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * @param a the array into which the elements of this list are to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     *          be stored, if it is big enough; otherwise, a new array of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     *          same runtime type is allocated for this purpose.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @return an array containing the elements of this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * @throws ArrayStoreException if the runtime type of the specified array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     *         is not a supertype of the runtime type of every element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     *         this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @throws NullPointerException if the specified array is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    <T> T[] toArray(T[] a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    // Modification Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * Appends the specified element to the end of this list (optional
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * operation).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * <p>Lists that support this operation may place limitations on what
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * elements may be added to this list.  In particular, some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * lists will refuse to add null elements, and others will impose
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * restrictions on the type of elements that may be added.  List
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * classes should clearly specify in their documentation any restrictions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * on what elements may be added.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * @param e element to be appended to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * @return <tt>true</tt> (as specified by {@link Collection#add})
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * @throws UnsupportedOperationException if the <tt>add</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     *         is not supported by this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * @throws ClassCastException if the class of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     *         prevents it from being added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * @throws NullPointerException if the specified element is null and this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     *         list does not permit null elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * @throws IllegalArgumentException if some property of this element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     *         prevents it from being added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    boolean add(E e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * Removes the first occurrence of the specified element from this list,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * if it is present (optional operation).  If this list does not contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * the element, it is unchanged.  More formally, removes the element with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * the lowest index <tt>i</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * (if such an element exists).  Returns <tt>true</tt> if this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * contained the specified element (or equivalently, if this list changed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * as a result of the call).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * @param o element to be removed from this list, if present
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * @return <tt>true</tt> if this list contained the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * @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
   253
     *         is incompatible with this list
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   254
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * @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
   256
     *         list 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
   257
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * @throws UnsupportedOperationException if the <tt>remove</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     *         is not supported by this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    boolean remove(Object o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    // Bulk Modification Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * Returns <tt>true</tt> if this list contains all of the elements of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * @param  c collection to be checked for containment in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * @return <tt>true</tt> if this list contains all of the elements of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     *         specified collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * @throws ClassCastException if the types of one or more elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     *         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
   275
     *         list
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   276
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * @throws NullPointerException if the specified collection contains one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     *         or more null elements and this list 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
   279
     *         elements
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   280
     *         (<a href="Collection.html#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
   281
     *         or if the specified collection is null
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * @see #contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
    boolean containsAll(Collection<?> c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * Appends all of the elements in the specified collection to the end of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * this list, in the order that they are returned by the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * collection's iterator (optional operation).  The behavior of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * operation is undefined if the specified collection is modified while
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * the operation is in progress.  (Note that this will occur if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * specified collection is this list, and it's nonempty.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * @param c collection containing elements to be added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * @return <tt>true</tt> if this list changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * @throws UnsupportedOperationException if the <tt>addAll</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     *         is not supported by this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * @throws ClassCastException if the class of an element of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     *         collection prevents it from being added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * @throws NullPointerException if the specified collection contains one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     *         or more null elements and this list does not permit null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     *         elements, or if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * @throws IllegalArgumentException if some property of an element of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     *         specified collection prevents it from being added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * @see #add(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    boolean addAll(Collection<? extends E> c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * Inserts all of the elements in the specified collection into this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * list at the specified position (optional operation).  Shifts the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * element currently at that position (if any) and any subsequent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * elements to the right (increases their indices).  The new elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * will appear in this list in the order that they are returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * specified collection's iterator.  The behavior of this operation is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * undefined if the specified collection is modified while the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * operation is in progress.  (Note that this will occur if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * collection is this list, and it's nonempty.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * @param index index at which to insert the first element from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     *              specified collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * @param c collection containing elements to be added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * @return <tt>true</tt> if this list changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * @throws UnsupportedOperationException if the <tt>addAll</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     *         is not supported by this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * @throws ClassCastException if the class of an element of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     *         collection prevents it from being added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * @throws NullPointerException if the specified collection contains one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     *         or more null elements and this list does not permit null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     *         elements, or if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * @throws IllegalArgumentException if some property of an element of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     *         specified collection prevents it from being added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * @throws IndexOutOfBoundsException if the index is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     *         (<tt>index &lt; 0 || index &gt; size()</tt>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    boolean addAll(int index, Collection<? extends E> c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * Removes from this list all of its elements that are contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * specified collection (optional operation).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * @param c collection containing elements to be removed from this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * @return <tt>true</tt> if this list changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * @throws UnsupportedOperationException if the <tt>removeAll</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     *         is not supported by this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * @throws ClassCastException if the class of an element of this list
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   347
     *         is incompatible with the specified collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   348
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * @throws NullPointerException if this list contains a null element and the
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   350
     *         specified 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
   351
     *         (<a href="Collection.html#optional-restrictions">optional</a>),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     *         or if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * @see #remove(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * @see #contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
    boolean removeAll(Collection<?> c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * Retains only the elements in this list that are contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * specified collection (optional operation).  In other words, removes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * from this list all of its elements that are not contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * @param c collection containing elements to be retained in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * @return <tt>true</tt> if this list changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * @throws UnsupportedOperationException if the <tt>retainAll</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     *         is not supported by this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * @throws ClassCastException if the class of an element of this list
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   369
     *         is incompatible with the specified collection
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   370
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * @throws NullPointerException if this list contains a null element and the
9503
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   372
     *         specified 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
   373
     *         (<a href="Collection.html#optional-restrictions">optional</a>),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     *         or if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * @see #remove(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * @see #contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    boolean retainAll(Collection<?> c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    /**
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   381
     * Replaces each element of this list with the result of applying the
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   382
     * operator to that element.  Errors or runtime exceptions thrown by
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   383
     * the operator are relayed to the caller.
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   384
     *
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   385
     * @implSpec
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   386
     * The default implementation is equivalent to, for this {@code list}:
21339
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   387
     * <pre>{@code
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   388
     *     final ListIterator<E> li = list.listIterator();
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   389
     *     while (li.hasNext()) {
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   390
     *         li.set(operator.apply(li.next()));
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   391
     *     }
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   392
     * }</pre>
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   393
     *
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   394
     * If the list's list-iterator does not support the {@code set} operation
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   395
     * then an {@code UnsupportedOperationException} will be thrown when
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   396
     * replacing the first element.
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   397
     *
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   398
     * @param operator the operator to apply to each element
20477
f7a1f6688508 8023340: Clarify that unmodifiable List.replaceAll() may not throw UOE if there are no items to be replaced.
mduigou
parents: 19435
diff changeset
   399
     * @throws UnsupportedOperationException if this list is unmodifiable.
f7a1f6688508 8023340: Clarify that unmodifiable List.replaceAll() may not throw UOE if there are no items to be replaced.
mduigou
parents: 19435
diff changeset
   400
     *         Implementations may throw this exception if an element
f7a1f6688508 8023340: Clarify that unmodifiable List.replaceAll() may not throw UOE if there are no items to be replaced.
mduigou
parents: 19435
diff changeset
   401
     *         cannot be replaced or if, in general, modification is not
f7a1f6688508 8023340: Clarify that unmodifiable List.replaceAll() may not throw UOE if there are no items to be replaced.
mduigou
parents: 19435
diff changeset
   402
     *         supported
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   403
     * @throws NullPointerException if the specified operator is null or
20477
f7a1f6688508 8023340: Clarify that unmodifiable List.replaceAll() may not throw UOE if there are no items to be replaced.
mduigou
parents: 19435
diff changeset
   404
     *         if the operator result is a null value and this list does
f7a1f6688508 8023340: Clarify that unmodifiable List.replaceAll() may not throw UOE if there are no items to be replaced.
mduigou
parents: 19435
diff changeset
   405
     *         not permit null elements
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   406
     *         (<a href="Collection.html#optional-restrictions">optional</a>)
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 void replaceAll(UnaryOperator<E> operator) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   410
        Objects.requireNonNull(operator);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   411
        final ListIterator<E> li = this.listIterator();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   412
        while (li.hasNext()) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   413
            li.set(operator.apply(li.next()));
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   414
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   415
    }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   416
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   417
    /**
22285
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   418
     * Sorts this list according to the order induced by the specified
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   419
     * {@link Comparator}.
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   420
     *
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   421
     * <p>All elements in this list must be <i>mutually comparable</i> using the
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   422
     * specified comparator (that is, {@code c.compare(e1, e2)} must not throw
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   423
     * a {@code ClassCastException} for any elements {@code e1} and {@code e2}
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   424
     * in the list).
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   425
     *
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   426
     * <p>If the specified comparator is {@code null} then all elements in this
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   427
     * list must implement the {@link Comparable} interface and the elements'
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   428
     * {@linkplain Comparable natural ordering} should be used.
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   429
     *
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   430
     * <p>This list must be modifiable, but need not be resizable.
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   431
     *
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   432
     * @implSpec
22285
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   433
     * The default implementation obtains an array containing all elements in
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   434
     * this list, sorts the array, and iterates over this list resetting each
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   435
     * element from the corresponding position in the array. (This avoids the
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   436
     * n<sup>2</sup> log(n) performance that would result from attempting
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   437
     * to sort a linked list in place.)
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   438
     *
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   439
     * @implNote
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   440
     * This implementation is a stable, adaptive, iterative mergesort that
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   441
     * requires far fewer than n lg(n) comparisons when the input array is
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   442
     * partially sorted, while offering the performance of a traditional
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   443
     * mergesort when the input array is randomly ordered.  If the input array
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   444
     * is nearly sorted, the implementation requires approximately n
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   445
     * comparisons.  Temporary storage requirements vary from a small constant
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   446
     * for nearly sorted input arrays to n/2 object references for randomly
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   447
     * ordered input arrays.
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   448
     *
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   449
     * <p>The implementation takes equal advantage of ascending and
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   450
     * descending order in its input array, and can take advantage of
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   451
     * ascending and descending order in different parts of the same
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   452
     * input array.  It is well-suited to merging two or more sorted arrays:
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   453
     * simply concatenate the arrays and sort the resulting array.
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   454
     *
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   455
     * <p>The implementation was adapted from Tim Peters's list sort for Python
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   456
     * (<a href="http://svn.python.org/projects/python/trunk/Objects/listsort.txt">
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   457
     * TimSort</a>).  It uses techniques from Peter McIlroy's "Optimistic
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   458
     * Sorting and Information Theoretic Complexity", in Proceedings of the
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   459
     * Fourth Annual ACM-SIAM Symposium on Discrete Algorithms, pp 467-474,
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   460
     * January 1993.
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   461
     *
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   462
     * @param c the {@code Comparator} used to compare list elements.
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   463
     *          A {@code null} value indicates that the elements'
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   464
     *          {@linkplain Comparable natural ordering} should be used
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   465
     * @throws ClassCastException if the list contains elements that are not
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   466
     *         <i>mutually comparable</i> using the specified comparator
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   467
     * @throws UnsupportedOperationException if the list's list-iterator does
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   468
     *         not support the {@code set} operation
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   469
     * @throws IllegalArgumentException
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   470
     *         (<a href="Collection.html#optional-restrictions">optional</a>)
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   471
     *         if the comparator is found to violate the {@link Comparator}
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   472
     *         contract
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   473
     * @since 1.8
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   474
     */
22285
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   475
    @SuppressWarnings({"unchecked", "rawtypes"})
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   476
    default void sort(Comparator<? super E> c) {
22285
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   477
        Object[] a = this.toArray();
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   478
        Arrays.sort(a, (Comparator) c);
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   479
        ListIterator<E> i = this.listIterator();
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   480
        for (Object e : a) {
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   481
            i.next();
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   482
            i.set((E) e);
6c67737a5ac0 8030848: Collections.sort(List l, Comparator) should defer to List.sort(Comparator )
psandoz
parents: 21339
diff changeset
   483
        }
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   484
    }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   485
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16929
diff changeset
   486
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * Removes all of the elements from this list (optional operation).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * The list will be empty after this call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * @throws UnsupportedOperationException if the <tt>clear</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     *         is not supported by this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
    void clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
    // Comparison and hashing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * Compares the specified object with this list for equality.  Returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * <tt>true</tt> if and only if the specified object is also a list, both
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * lists have the same size, and all corresponding pairs of elements in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * the two lists are <i>equal</i>.  (Two elements <tt>e1</tt> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * <tt>e2</tt> are <i>equal</i> if <tt>(e1==null ? e2==null :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * e1.equals(e2))</tt>.)  In other words, two lists are defined to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * equal if they contain the same elements in the same order.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * definition ensures that the equals method works properly across
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * different implementations of the <tt>List</tt> interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * @param o the object to be compared for equality with this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     * @return <tt>true</tt> if the specified object is equal to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    boolean equals(Object o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * Returns the hash code value for this list.  The hash code of a list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * is defined to be the result of the following calculation:
21339
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   517
     * <pre>{@code
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   518
     *     int hashCode = 1;
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   519
     *     for (E e : list)
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   520
     *         hashCode = 31*hashCode + (e==null ? 0 : e.hashCode());
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   521
     * }</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * This ensures that <tt>list1.equals(list2)</tt> implies that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * <tt>list1.hashCode()==list2.hashCode()</tt> for any two lists,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * <tt>list1</tt> and <tt>list2</tt>, as required by the general
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     * contract of {@link Object#hashCode}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * @return the hash code value for this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * @see Object#equals(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * @see #equals(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
    int hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
    // Positional Access Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * Returns the element at the specified position in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     * @param index index of the element to return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * @return the element at the specified position in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * @throws IndexOutOfBoundsException if the index is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     *         (<tt>index &lt; 0 || index &gt;= size()</tt>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    E get(int index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * Replaces the element at the specified position in this list with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * specified element (optional operation).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     * @param index index of the element to replace
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * @param element element to be stored at the specified position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * @return the element previously at the specified position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * @throws UnsupportedOperationException if the <tt>set</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     *         is not supported by this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * @throws ClassCastException if the class of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     *         prevents it from being added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     * @throws NullPointerException if the specified element is null and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     *         this list does not permit null elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * @throws IllegalArgumentException if some property of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     *         element prevents it from being added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * @throws IndexOutOfBoundsException if the index is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     *         (<tt>index &lt; 0 || index &gt;= size()</tt>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    E set(int index, E element);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     * Inserts the specified element at the specified position in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * (optional operation).  Shifts the element currently at that position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     * (if any) and any subsequent elements to the right (adds one to their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     * indices).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     * @param index index at which the specified element is to be inserted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * @param element element to be inserted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * @throws UnsupportedOperationException if the <tt>add</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     *         is not supported by this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     * @throws ClassCastException if the class of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     *         prevents it from being added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * @throws NullPointerException if the specified element is null and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     *         this list does not permit null elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * @throws IllegalArgumentException if some property of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     *         element prevents it from being added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * @throws IndexOutOfBoundsException if the index is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     *         (<tt>index &lt; 0 || index &gt; size()</tt>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
    void add(int index, E element);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     * Removes the element at the specified position in this list (optional
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * operation).  Shifts any subsequent elements to the left (subtracts one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * from their indices).  Returns the element that was removed from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     * @param index the index of the element to be removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     * @return the element previously at the specified position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     * @throws UnsupportedOperationException if the <tt>remove</tt> operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     *         is not supported by this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     * @throws IndexOutOfBoundsException if the index is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     *         (<tt>index &lt; 0 || index &gt;= size()</tt>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    E remove(int index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
    // Search Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     * Returns the index of the first occurrence of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     * in this list, or -1 if this list does not contain the element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     * More formally, returns the lowest index <tt>i</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     * or -1 if there is no such index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * @param o element to search for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * @return the index of the first occurrence of the specified element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     *         this list, or -1 if this list does not contain the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     * @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
   616
     *         is incompatible with this list
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   617
     *         (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * @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
   619
     *         list 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
   620
     *         (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
    int indexOf(Object o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     * Returns the index of the last occurrence of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     * in this list, or -1 if this list does not contain the element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     * More formally, returns the highest index <tt>i</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     * or -1 if there is no such index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * @param o element to search for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     * @return the index of the last occurrence of the specified element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     *         this list, or -1 if this list does not contain the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     * @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
   635
     *         is incompatible with this list
588cf31d584a 6546713: link the word (optional) in exception specifications to the text which provides explanation and context.
mduigou
parents: 7668
diff changeset
   636
     *         (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     * @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
   638
     *         list 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
   639
     *         (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    int lastIndexOf(Object o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
    // List Iterators
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     * Returns a list iterator over the elements in this list (in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
     * sequence).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     * @return a list iterator over the elements in this list (in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     *         sequence)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
    ListIterator<E> listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     * Returns a list iterator over the elements in this list (in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     * sequence), starting at the specified position in the list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     * The specified index indicates the first element that would be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     * returned by an initial call to {@link ListIterator#next next}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     * An initial call to {@link ListIterator#previous previous} would
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     * return the element with the specified index minus one.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     * @param index index of the first element to be returned from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     *        list iterator (by a call to {@link ListIterator#next next})
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     * @return a list iterator over the elements in this list (in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     *         sequence), starting at the specified position in the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     * @throws IndexOutOfBoundsException if the index is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     *         ({@code index < 0 || index > size()})
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    ListIterator<E> listIterator(int index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    // View
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * Returns a view of the portion of this list between the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     * <tt>fromIndex</tt>, inclusive, and <tt>toIndex</tt>, exclusive.  (If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     * <tt>fromIndex</tt> and <tt>toIndex</tt> are equal, the returned list is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     * empty.)  The returned list is backed by this list, so non-structural
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * changes in the returned list are reflected in this list, and vice-versa.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     * The returned list supports all of the optional list operations supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * by this list.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * This method eliminates the need for explicit range operations (of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * the sort that commonly exist for arrays).  Any operation that expects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * a list can be used as a range operation by passing a subList view
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * instead of a whole list.  For example, the following idiom
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * removes a range of elements from a list:
21339
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   688
     * <pre>{@code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     *      list.subList(from, to).clear();
21339
20e8b81964d5 8025909: Lambda Library Spec Updates
henryjen
parents: 20477
diff changeset
   690
     * }</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * Similar idioms may be constructed for <tt>indexOf</tt> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * <tt>lastIndexOf</tt>, and all of the algorithms in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * <tt>Collections</tt> class can be applied to a subList.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * The semantics of the list returned by this method become undefined if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * the backing list (i.e., this list) is <i>structurally modified</i> in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     * any way other than via the returned list.  (Structural modifications are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     * those that change the size of this list, or otherwise perturb it in such
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * a fashion that iterations in progress may yield incorrect results.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     * @param fromIndex low endpoint (inclusive) of the subList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     * @param toIndex high endpoint (exclusive) of the subList
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * @return a view of the specified range within this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * @throws IndexOutOfBoundsException for an illegal endpoint index value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     *         (<tt>fromIndex &lt; 0 || toIndex &gt; size ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     *         fromIndex &gt; toIndex</tt>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
    List<E> subList(int fromIndex, int toIndex);
16929
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   709
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   710
    /**
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   711
     * Creates a {@link Spliterator} over the elements in this list.
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   712
     *
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   713
     * <p>The {@code Spliterator} reports {@link Spliterator#SIZED} and
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   714
     * {@link Spliterator#ORDERED}.  Implementations should document the
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   715
     * reporting of additional characteristic values.
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   716
     *
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   717
     * @implSpec
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   718
     * The default implementation creates a
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   719
     * <em><a href="Spliterator.html#binding">late-binding</a></em> spliterator
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   720
     * from the list's {@code Iterator}.  The spliterator inherits the
19435
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 19074
diff changeset
   721
     * <em>fail-fast</em> properties of the list's iterator.
16929
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   722
     *
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   723
     * @implNote
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   724
     * The created {@code Spliterator} additionally reports
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   725
     * {@link Spliterator#SUBSIZED}.
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   726
     *
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   727
     * @return a {@code Spliterator} over the elements in this list
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   728
     * @since 1.8
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   729
     */
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   730
    @Override
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   731
    default Spliterator<E> spliterator() {
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   732
        return Spliterators.spliterator(this, Spliterator.ORDERED);
c984ae5655cb 8010096: Initial java.util.Spliterator putback
briangoetz
parents: 14342
diff changeset
   733
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
}