jdk/src/share/classes/java/util/ArrayList.java
author henryjen
Tue, 03 Sep 2013 12:16:01 -0700
changeset 19800 6e1fef53ea55
parent 19435 9d7530ff42cb
child 22078 bdec5d53e98c
permissions -rw-r--r--
8017513: Support for closeable streams 8022237: j.u.s.BaseStream.onClose() has an issue in implementation or requires spec clarification 8022572: Same exception instances thrown from j.u.stream.Stream.onClose() handlers are not listed as suppressed Summary: BaseStream implements AutoCloseable; Remove CloseableStream and DelegatingStream Reviewed-by: alanb, mduigou, psandoz Contributed-by: brian.goetz@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
     2
 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
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: 5466
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: 5466
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5466
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: 16855
diff changeset
    28
import java.util.function.Consumer;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
    29
import java.util.function.Predicate;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
    30
import java.util.function.UnaryOperator;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
    31
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * Resizable-array implementation of the <tt>List</tt> interface.  Implements
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * all optional list operations, and permits all elements, including
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * <tt>null</tt>.  In addition to implementing the <tt>List</tt> interface,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * this class provides methods to manipulate the size of the array that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * used internally to store the list.  (This class is roughly equivalent to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * <tt>Vector</tt>, except that it is unsynchronized.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * <p>The <tt>size</tt>, <tt>isEmpty</tt>, <tt>get</tt>, <tt>set</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * <tt>iterator</tt>, and <tt>listIterator</tt> operations run in constant
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * time.  The <tt>add</tt> operation runs in <i>amortized constant time</i>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * that is, adding n elements requires O(n) time.  All of the other operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * run in linear time (roughly speaking).  The constant factor is low compared
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * to that for the <tt>LinkedList</tt> implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <p>Each <tt>ArrayList</tt> instance has a <i>capacity</i>.  The capacity is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * the size of the array used to store the elements in the list.  It is always
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * at least as large as the list size.  As elements are added to an ArrayList,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * its capacity grows automatically.  The details of the growth policy are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * specified beyond the fact that adding an element has constant amortized
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * time cost.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <p>An application can increase the capacity of an <tt>ArrayList</tt> instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * before adding a large number of elements using the <tt>ensureCapacity</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * operation.  This may reduce the amount of incremental reallocation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * <p><strong>Note that this implementation is not synchronized.</strong>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * If multiple threads access an <tt>ArrayList</tt> instance concurrently,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * and at least one of the threads modifies the list structurally, it
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * <i>must</i> be synchronized externally.  (A structural modification is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * any operation that adds or deletes one or more elements, or explicitly
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * resizes the backing array; merely setting the value of an element is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * a structural modification.)  This is typically accomplished by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * synchronizing on some object that naturally encapsulates the list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * If no such object exists, the list should be "wrapped" using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * {@link Collections#synchronizedList Collections.synchronizedList}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * method.  This is best done at creation time, to prevent accidental
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * unsynchronized access to the list:<pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *   List list = Collections.synchronizedList(new ArrayList(...));</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 17441
diff changeset
    73
 * <p><a name="fail-fast">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * The iterators returned by this class's {@link #iterator() iterator} and
18829
ec84f0c313b0 8020409: Clean up doclint problems in java.util package, part 1
bpb
parents: 17441
diff changeset
    75
 * {@link #listIterator(int) listIterator} methods are <em>fail-fast</em>:</a>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * if the list is structurally modified at any time after the iterator is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * created, in any way except through the iterator's own
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * {@link ListIterator#remove() remove} or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * {@link ListIterator#add(Object) add} methods, the iterator will throw a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * {@link ConcurrentModificationException}.  Thus, in the face of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * concurrent modification, the iterator fails quickly and cleanly, rather
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * than risking arbitrary, non-deterministic behavior at an undetermined
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * time in the future.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * as it is, generally speaking, impossible to make any hard guarantees in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * presence of unsynchronized concurrent modification.  Fail-fast iterators
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * throw {@code ConcurrentModificationException} on a best-effort basis.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * Therefore, it would be wrong to write a program that depended on this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * exception for its correctness:  <i>the fail-fast behavior of iterators
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * should be used only to detect bugs.</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * <p>This class is a member of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * @author  Josh Bloch
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * @author  Neal Gafter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * @see     Collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * @see     List
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
 * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
public class ArrayList<E> extends AbstractList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        implements List<E>, RandomAccess, Cloneable, java.io.Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    private static final long serialVersionUID = 8683452581122892189L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    /**
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   112
     * Default initial capacity.
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   113
     */
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   114
    private static final int DEFAULT_CAPACITY = 10;
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   115
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   116
    /**
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   117
     * Shared empty array instance used for empty instances.
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   118
     */
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   119
    private static final Object[] EMPTY_ELEMENTDATA = {};
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   120
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   121
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * The array buffer into which the elements of the ArrayList are stored.
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   123
     * The capacity of the ArrayList is the length of this array buffer. Any
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   124
     * empty ArrayList with elementData == EMPTY_ELEMENTDATA will be expanded to
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   125
     * DEFAULT_CAPACITY when the first element is added.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     */
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   127
    transient Object[] elementData; // non-private to simplify nested class access
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * The size of the ArrayList (the number of elements it contains).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    private int size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * Constructs an empty list with the specified initial capacity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     *
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 7020
diff changeset
   139
     * @param  initialCapacity  the initial capacity of the list
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 7020
diff changeset
   140
     * @throws IllegalArgumentException if the specified initial capacity
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 7020
diff changeset
   141
     *         is negative
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    public ArrayList(int initialCapacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        if (initialCapacity < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            throw new IllegalArgumentException("Illegal Capacity: "+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                                               initialCapacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        this.elementData = new Object[initialCapacity];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * Constructs an empty list with an initial capacity of ten.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    public ArrayList() {
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   155
        super();
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   156
        this.elementData = EMPTY_ELEMENTDATA;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * Constructs a list containing the elements of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * collection, in the order they are returned by the collection's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * iterator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * @param c the collection whose elements are to be placed into this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * @throws NullPointerException if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    public ArrayList(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        elementData = c.toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        size = elementData.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        // c.toArray might (incorrectly) not return Object[] (see 6260652)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        if (elementData.getClass() != Object[].class)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            elementData = Arrays.copyOf(elementData, size, Object[].class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * Trims the capacity of this <tt>ArrayList</tt> instance to be the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * list's current size.  An application can use this operation to minimize
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * the storage of an <tt>ArrayList</tt> instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    public void trimToSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        modCount++;
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   182
        if (size < elementData.length) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            elementData = Arrays.copyOf(elementData, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * Increases the capacity of this <tt>ArrayList</tt> instance, if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * necessary, to ensure that it can hold at least the number of elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * specified by the minimum capacity argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     *
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 7020
diff changeset
   192
     * @param   minCapacity   the desired minimum capacity
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    public void ensureCapacity(int minCapacity) {
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   195
        int minExpand = (elementData != EMPTY_ELEMENTDATA)
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   196
            // any size if real element table
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   197
            ? 0
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   198
            // larger than default for empty table. It's already supposed to be
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   199
            // at default size.
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   200
            : DEFAULT_CAPACITY;
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   201
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   202
        if (minCapacity > minExpand) {
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   203
            ensureExplicitCapacity(minCapacity);
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   204
        }
7020
25638687fe82 6992121: StringBuilder.ensureCapacity(int minCap) throws OutOfMemoryError with minCap=Integer.MIN_VALUE
mchung
parents: 5506
diff changeset
   205
    }
25638687fe82 6992121: StringBuilder.ensureCapacity(int minCap) throws OutOfMemoryError with minCap=Integer.MIN_VALUE
mchung
parents: 5506
diff changeset
   206
25638687fe82 6992121: StringBuilder.ensureCapacity(int minCap) throws OutOfMemoryError with minCap=Integer.MIN_VALUE
mchung
parents: 5506
diff changeset
   207
    private void ensureCapacityInternal(int minCapacity) {
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   208
        if (elementData == EMPTY_ELEMENTDATA) {
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   209
            minCapacity = Math.max(DEFAULT_CAPACITY, minCapacity);
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   210
        }
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   211
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   212
        ensureExplicitCapacity(minCapacity);
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   213
    }
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   214
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   215
    private void ensureExplicitCapacity(int minCapacity) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        modCount++;
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   217
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   218
        // overflow-conscious code
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   219
        if (minCapacity - elementData.length > 0)
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   220
            grow(minCapacity);
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   221
    }
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   222
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   223
    /**
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   224
     * The maximum size of array to allocate.
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   225
     * Some VMs reserve some header words in an array.
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   226
     * Attempts to allocate larger arrays may result in
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   227
     * OutOfMemoryError: Requested array size exceeds VM limit
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   228
     */
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   229
    private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   230
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   231
    /**
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   232
     * Increases the capacity to ensure that it can hold at least the
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   233
     * number of elements specified by the minimum capacity argument.
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   234
     *
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   235
     * @param minCapacity the desired minimum capacity
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   236
     */
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   237
    private void grow(int minCapacity) {
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   238
        // overflow-conscious code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        int oldCapacity = elementData.length;
5466
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   240
        int newCapacity = oldCapacity + (oldCapacity >> 1);
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   241
        if (newCapacity - minCapacity < 0)
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   242
            newCapacity = minCapacity;
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   243
        if (newCapacity - MAX_ARRAY_SIZE > 0)
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   244
            newCapacity = hugeCapacity(minCapacity);
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   245
        // minCapacity is usually close to size, so this is a win:
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   246
        elementData = Arrays.copyOf(elementData, newCapacity);
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   247
    }
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   248
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   249
    private static int hugeCapacity(int minCapacity) {
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   250
        if (minCapacity < 0) // overflow
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   251
            throw new OutOfMemoryError();
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   252
        return (minCapacity > MAX_ARRAY_SIZE) ?
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   253
            Integer.MAX_VALUE :
f130bb07764b 6933217: Huge arrays handled poorly in core libraries
martin
parents: 2178
diff changeset
   254
            MAX_ARRAY_SIZE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * Returns the number of elements in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * @return the number of elements in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        return size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    }
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 no elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * @return <tt>true</tt> if this list contains no elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    public boolean isEmpty() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        return size == 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * Returns <tt>true</tt> if this list contains the specified element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * More formally, returns <tt>true</tt> if and only if this list contains
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * at least one element <tt>e</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * @param o element whose presence in this list is to be tested
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * @return <tt>true</tt> if this list contains the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
    public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        return indexOf(o) >= 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * Returns the index of the first occurrence of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * in this list, or -1 if this list does not contain the element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * More formally, returns the lowest index <tt>i</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * or -1 if there is no such index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
    public int indexOf(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        if (o == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
            for (int i = 0; i < size; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
                if (elementData[i]==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                    return i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            for (int i = 0; i < size; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
                if (o.equals(elementData[i]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                    return i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * Returns the index of the last occurrence of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * in this list, or -1 if this list does not contain the element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * More formally, returns the highest index <tt>i</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * or -1 if there is no such index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    public int lastIndexOf(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        if (o == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
            for (int i = size-1; i >= 0; i--)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
                if (elementData[i]==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
                    return i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
            for (int i = size-1; i >= 0; i--)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
                if (o.equals(elementData[i]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
                    return i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * Returns a shallow copy of this <tt>ArrayList</tt> instance.  (The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * elements themselves are not copied.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @return a clone of this <tt>ArrayList</tt> instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    public Object clone() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        try {
12448
b95438b17098 7157893: Warnings Cleanup in java.util.*
khazra
parents: 10419
diff changeset
   336
            ArrayList<?> v = (ArrayList<?>) super.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
            v.elementData = Arrays.copyOf(elementData, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            v.modCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
            return v;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        } catch (CloneNotSupportedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
            // this shouldn't happen, since we are Cloneable
10419
12c063b39232 7084245: Update usages of InternalError to use exception chaining
sherman
parents: 9503
diff changeset
   342
            throw new InternalError(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * Returns an array containing all of the elements in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * in proper sequence (from first to last element).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * <p>The returned array will be "safe" in that no references to it are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * maintained by this list.  (In other words, this method must allocate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * a new array).  The caller is thus free to modify the returned array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * <p>This method acts as bridge between array-based and collection-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * APIs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * @return an array containing all of the elements in this list in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     *         proper sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    public Object[] toArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        return Arrays.copyOf(elementData, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * Returns an array containing all of the elements in this list in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * sequence (from first to last element); the runtime type of the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * array is that of the specified array.  If the list fits in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * specified array, it is returned therein.  Otherwise, a new array is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * allocated with the runtime type of the specified array and the size of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * <p>If the list fits in the specified array with room to spare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * (i.e., the array has more elements than the list), the element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * the array immediately following the end of the collection is set to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * <tt>null</tt>.  (This is useful in determining the length of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * list <i>only</i> if the caller knows that the list does not contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * any null elements.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * @param a the array into which the elements of the list are to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     *          be stored, if it is big enough; otherwise, a new array of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     *          same runtime type is allocated for this purpose.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * @return an array containing the elements of the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * @throws ArrayStoreException if the runtime type of the specified array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     *         is not a supertype of the runtime type of every element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     *         this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     * @throws NullPointerException if the specified array is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        if (a.length < size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
            // Make a new array of a's runtime type, but my contents:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
            return (T[]) Arrays.copyOf(elementData, size, a.getClass());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
        System.arraycopy(elementData, 0, a, 0, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        if (a.length > size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
            a[size] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    // Positional Access Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
    @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    E elementData(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        return (E) elementData[index];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * Returns the element at the specified position in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * @param  index index of the element to return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * @return the element at the specified position in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    public E get(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        rangeCheck(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        return elementData(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * Replaces the element at the specified position in this list with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * the specified element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * @param index index of the element to replace
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * @param element element to be stored at the specified position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * @return the element previously at the specified position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
    public E set(int index, E element) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        rangeCheck(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        E oldValue = elementData(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        elementData[index] = element;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        return oldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * Appends the specified element to the end of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * @param e element to be appended to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * @return <tt>true</tt> (as specified by {@link Collection#add})
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
    public boolean add(E e) {
7020
25638687fe82 6992121: StringBuilder.ensureCapacity(int minCap) throws OutOfMemoryError with minCap=Integer.MIN_VALUE
mchung
parents: 5506
diff changeset
   443
        ensureCapacityInternal(size + 1);  // Increments modCount!!
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        elementData[size++] = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * Inserts the specified element at the specified position in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * list. Shifts the element currently at that position (if any) and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * any subsequent elements to the right (adds one to their indices).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * @param index index at which the specified element is to be inserted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * @param element element to be inserted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    public void add(int index, E element) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        rangeCheckForAdd(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
7020
25638687fe82 6992121: StringBuilder.ensureCapacity(int minCap) throws OutOfMemoryError with minCap=Integer.MIN_VALUE
mchung
parents: 5506
diff changeset
   460
        ensureCapacityInternal(size + 1);  // Increments modCount!!
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        System.arraycopy(elementData, index, elementData, index + 1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
                         size - index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        elementData[index] = element;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        size++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * Removes the element at the specified position in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * Shifts any subsequent elements to the left (subtracts one from their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     * indices).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * @param index the index of the element to be removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * @return the element that was removed from the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    public E remove(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
        rangeCheck(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        E oldValue = elementData(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        int numMoved = size - index - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        if (numMoved > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
            System.arraycopy(elementData, index+1, elementData, index,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
                             numMoved);
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   486
        elementData[--size] = null; // clear to let GC do its work
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        return oldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     * Removes the first occurrence of the specified element from this list,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * if it is present.  If the list does not contain the element, it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     * unchanged.  More formally, removes the element with the lowest index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * <tt>i</tt> such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * (if such an element exists).  Returns <tt>true</tt> if this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * contained the specified element (or equivalently, if this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * changed as a result of the call).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * @param o element to be removed from this list, if present
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * @return <tt>true</tt> if this list contained the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
    public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        if (o == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            for (int index = 0; index < size; index++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
                if (elementData[index] == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
                    fastRemove(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
            for (int index = 0; index < size; index++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
                if (o.equals(elementData[index])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
                    fastRemove(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * Private remove method that skips bounds checking and does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * return the value removed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
    private void fastRemove(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        int numMoved = size - index - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        if (numMoved > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
            System.arraycopy(elementData, index+1, elementData, index,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                             numMoved);
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   531
        elementData[--size] = null; // clear to let GC do its work
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * Removes all of the elements from this list.  The list will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     * be empty after this call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   541
        // clear to let GC do its work
16725
9e7cfcc4ff6a 8011199: Backout changeset JDK-7143928 (2b34a1eb3153)
mduigou
parents: 16723
diff changeset
   542
        for (int i = 0; i < size; i++)
9e7cfcc4ff6a 8011199: Backout changeset JDK-7143928 (2b34a1eb3153)
mduigou
parents: 16723
diff changeset
   543
            elementData[i] = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        size = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * Appends all of the elements in the specified collection to the end of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     * this list, in the order that they are returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * specified collection's Iterator.  The behavior of this operation is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * undefined if the specified collection is modified while the operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * is in progress.  (This implies that the behavior of this call is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * undefined if the specified collection is this list, and this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * list is nonempty.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     * @param c collection containing elements to be added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     * @return <tt>true</tt> if this list changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * @throws NullPointerException if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
    public boolean addAll(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
        Object[] a = c.toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        int numNew = a.length;
7020
25638687fe82 6992121: StringBuilder.ensureCapacity(int minCap) throws OutOfMemoryError with minCap=Integer.MIN_VALUE
mchung
parents: 5506
diff changeset
   564
        ensureCapacityInternal(size + numNew);  // Increments modCount
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        System.arraycopy(a, 0, elementData, size, numNew);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
        size += numNew;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        return numNew != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * Inserts all of the elements in the specified collection into this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     * list, starting at the specified position.  Shifts the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * currently at that position (if any) and any subsequent elements to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * the right (increases their indices).  The new elements will appear
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * in the list in the order that they are returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     * specified collection's iterator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * @param index index at which to insert the first element from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     *              specified collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * @param c collection containing elements to be added to this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * @return <tt>true</tt> if this list changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * @throws NullPointerException if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
    public boolean addAll(int index, Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        rangeCheckForAdd(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
        Object[] a = c.toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
        int numNew = a.length;
7020
25638687fe82 6992121: StringBuilder.ensureCapacity(int minCap) throws OutOfMemoryError with minCap=Integer.MIN_VALUE
mchung
parents: 5506
diff changeset
   590
        ensureCapacityInternal(size + numNew);  // Increments modCount
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
        int numMoved = size - index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
        if (numMoved > 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
            System.arraycopy(elementData, index, elementData, index + numNew,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
                             numMoved);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        System.arraycopy(a, 0, elementData, index, numNew);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        size += numNew;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
        return numNew != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     * Removes from this list all of the elements whose index is between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     * Shifts any succeeding elements to the left (reduces their index).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     * This call shortens the list by {@code (toIndex - fromIndex)} elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     * (If {@code toIndex==fromIndex}, this operation has no effect.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     * @throws IndexOutOfBoundsException if {@code fromIndex} or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     *         {@code toIndex} is out of range
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     *         ({@code fromIndex < 0 ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     *          fromIndex >= size() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     *          toIndex > size() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     *          toIndex < fromIndex})
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
    protected void removeRange(int fromIndex, int toIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
        int numMoved = size - toIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
        System.arraycopy(elementData, toIndex, elementData, fromIndex,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
                         numMoved);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   622
        // clear to let GC do its work
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        int newSize = size - (toIndex-fromIndex);
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   624
        for (int i = newSize; i < size; i++) {
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   625
            elementData[i] = null;
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   626
        }
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   627
        size = newSize;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * Checks if the given index is in range.  If not, throws an appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     * runtime exception.  This method does *not* check if the index is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * negative: It is always used immediately prior to an array access,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     * which throws an ArrayIndexOutOfBoundsException if index is negative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
    private void rangeCheck(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        if (index >= size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
            throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     * A version of rangeCheck used by add and addAll.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
    private void rangeCheckForAdd(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
        if (index > size || index < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
            throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     * Constructs an IndexOutOfBoundsException detail message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     * Of the many possible refactorings of the error handling code,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
     * this "outlining" performs best with both server and client VMs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    private String outOfBoundsMsg(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        return "Index: "+index+", Size: "+size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     * Removes from this list all of its elements that are contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     * specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     * @param c collection containing elements to be removed from this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     * @return {@code true} if this list changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     * @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
   665
     *         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
   666
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     * @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
   668
     *         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
   669
     * (<a href="Collection.html#optional-restrictions">optional</a>),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     *         or if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * @see Collection#contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    public boolean removeAll(Collection<?> c) {
17441
5ae43433d158 4802647: Throw required NPEs from removeAll()/retainAll()
mduigou
parents: 17432
diff changeset
   674
        Objects.requireNonNull(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
        return batchRemove(c, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * Retains only the elements in this list that are contained in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     * specified collection.  In other words, removes from this list all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * of its elements that are not contained in the specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * @param c collection containing elements to be retained in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * @return {@code true} if this list changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * @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
   686
     *         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
   687
     * (<a href="Collection.html#optional-restrictions">optional</a>)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * @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
   689
     *         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
   690
     * (<a href="Collection.html#optional-restrictions">optional</a>),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     *         or if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * @see Collection#contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
    public boolean retainAll(Collection<?> c) {
17441
5ae43433d158 4802647: Throw required NPEs from removeAll()/retainAll()
mduigou
parents: 17432
diff changeset
   695
        Objects.requireNonNull(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
        return batchRemove(c, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
    private boolean batchRemove(Collection<?> c, boolean complement) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        final Object[] elementData = this.elementData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
        int r = 0, w = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
        boolean modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
            for (; r < size; r++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
                if (c.contains(elementData[r]) == complement)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
                    elementData[w++] = elementData[r];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
            // Preserve behavioral compatibility with AbstractCollection,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
            // even if c.contains() throws.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
            if (r != size) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
                System.arraycopy(elementData, r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
                                 elementData, w,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
                                 size - r);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
                w += size - r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
            if (w != size) {
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   717
                // clear to let GC do its work
16725
9e7cfcc4ff6a 8011199: Backout changeset JDK-7143928 (2b34a1eb3153)
mduigou
parents: 16723
diff changeset
   718
                for (int i = w; i < size; i++)
9e7cfcc4ff6a 8011199: Backout changeset JDK-7143928 (2b34a1eb3153)
mduigou
parents: 16723
diff changeset
   719
                    elementData[i] = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
                modCount += size - w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
                size = w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
                modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
        return modified;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     * Save the state of the <tt>ArrayList</tt> instance to a stream (that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * is, serialize it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * @serialData The length of the array backing the <tt>ArrayList</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     *             instance is emitted (int), followed by all of its elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     *             (each an <tt>Object</tt>) in the proper order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
    private void writeObject(java.io.ObjectOutputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        throws java.io.IOException{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        // Write out element count, and any hidden stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
        int expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
        s.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   742
        // Write out size as capacity for behavioural compatibility with clone()
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   743
        s.writeInt(size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
        // Write out all elements in the proper order.
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   746
        for (int i=0; i<size; i++) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
            s.writeObject(elementData[i]);
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   748
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        if (modCount != expectedModCount) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
            throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     * Reconstitute the <tt>ArrayList</tt> instance from a stream (that is,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
     * deserialize it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
        throws java.io.IOException, ClassNotFoundException {
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   761
        elementData = EMPTY_ELEMENTDATA;
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   762
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        // Read in size, and any hidden stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
        s.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   766
        // Read in capacity
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   767
        s.readInt(); // ignored
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   768
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   769
        if (size > 0) {
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   770
            // be like clone(), allocate array based upon size not capacity
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   771
            ensureCapacityInternal(size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
16855
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   773
            Object[] a = elementData;
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   774
            // Read in all elements in the proper order.
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   775
            for (int i=0; i<size; i++) {
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   776
                a[i] = s.readObject();
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   777
            }
106eaf391fbc 8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents: 16725
diff changeset
   778
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
     * Returns a list iterator over the elements in this list (in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
     * sequence), starting at the specified position in the list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
     * The specified index indicates the first element that would be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
     * returned by an initial call to {@link ListIterator#next next}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
     * An initial call to {@link ListIterator#previous previous} would
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     * return the element with the specified index minus one.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     * <p>The returned list iterator is <a href="#fail-fast"><i>fail-fast</i></a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
    public ListIterator<E> listIterator(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
        if (index < 0 || index > size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
            throw new IndexOutOfBoundsException("Index: "+index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
        return new ListItr(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
     * Returns a list iterator over the elements in this list (in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
     * sequence).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
     * <p>The returned list iterator is <a href="#fail-fast"><i>fail-fast</i></a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     * @see #listIterator(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
    public ListIterator<E> listIterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
        return new ListItr(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
     * Returns an iterator over the elements in this list in proper sequence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     * <p>The returned iterator is <a href="#fail-fast"><i>fail-fast</i></a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
     * @return an iterator over the elements in this list in proper sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
    public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
        return new Itr();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
     * An optimized version of AbstractList.Itr
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
    private class Itr implements Iterator<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
        int cursor;       // index of next element to return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
        int lastRet = -1; // index of last element returned; -1 if no such
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        int expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
        public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
            return cursor != size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
        @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
        public E next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
            int i = cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
            if (i >= size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
                throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
            Object[] elementData = ArrayList.this.elementData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
            if (i >= elementData.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
            cursor = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
            return (E) elementData[lastRet = i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
        public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
            if (lastRet < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
                ArrayList.this.remove(lastRet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
                cursor = lastRet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
                lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
                expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
            } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   862
        @Override
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   863
        @SuppressWarnings("unchecked")
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   864
        public void forEachRemaining(Consumer<? super E> consumer) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   865
            Objects.requireNonNull(consumer);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   866
            final int size = ArrayList.this.size;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   867
            int i = cursor;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   868
            if (i >= size) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   869
                return;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   870
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   871
            final Object[] elementData = ArrayList.this.elementData;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   872
            if (i >= elementData.length) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   873
                throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   874
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   875
            while (i != size && modCount == expectedModCount) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   876
                consumer.accept((E) elementData[i++]);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   877
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   878
            // update once at end of iteration to reduce heap write traffic
17432
efdf6eb85a17 8013150: Iterator.remove and forEachRemaining relationship not specified
mduigou
parents: 17180
diff changeset
   879
            cursor = i;
efdf6eb85a17 8013150: Iterator.remove and forEachRemaining relationship not specified
mduigou
parents: 17180
diff changeset
   880
            lastRet = i - 1;
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   881
            checkForComodification();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   882
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
   883
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
        final void checkForComodification() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
            if (modCount != expectedModCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
     * An optimized version of AbstractList.ListItr
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
    private class ListItr extends Itr implements ListIterator<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
        ListItr(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
            super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
            cursor = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
        public boolean hasPrevious() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
            return cursor != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
        public int nextIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
            return cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
        public int previousIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
            return cursor - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
        @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
        public E previous() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
            int i = cursor - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
            if (i < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
                throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
            Object[] elementData = ArrayList.this.elementData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
            if (i >= elementData.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
            cursor = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
            return (E) elementData[lastRet = i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
        public void set(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
            if (lastRet < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
                throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
                ArrayList.this.set(lastRet, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
            } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
        public void add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
                int i = cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
                ArrayList.this.add(i, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
                cursor = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
                lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
                expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
            } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
     * Returns a view of the portion of this list between the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
     * {@code fromIndex}, inclusive, and {@code toIndex}, exclusive.  (If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
     * {@code fromIndex} and {@code toIndex} are equal, the returned list is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
     * empty.)  The returned list is backed by this list, so non-structural
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
     * changes in the returned list are reflected in this list, and vice-versa.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
     * The returned list supports all of the optional list operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
     * <p>This method eliminates the need for explicit range operations (of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
     * the sort that commonly exist for arrays).  Any operation that expects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
     * a list can be used as a range operation by passing a subList view
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
     * instead of a whole list.  For example, the following idiom
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
     * removes a range of elements from a list:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
     *      list.subList(from, to).clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
     * Similar idioms may be constructed for {@link #indexOf(Object)} and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
     * {@link #lastIndexOf(Object)}, and all of the algorithms in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
     * {@link Collections} class can be applied to a subList.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
     * <p>The semantics of the list returned by this method become undefined if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
     * the backing list (i.e., this list) is <i>structurally modified</i> in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
     * any way other than via the returned list.  (Structural modifications are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
     * those that change the size of this list, or otherwise perturb it in such
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
     * a fashion that iterations in progress may yield incorrect results.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
     * @throws IllegalArgumentException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
    public List<E> subList(int fromIndex, int toIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
        subListRangeCheck(fromIndex, toIndex, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
        return new SubList(this, 0, fromIndex, toIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
    static void subListRangeCheck(int fromIndex, int toIndex, int size) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
        if (fromIndex < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
            throw new IndexOutOfBoundsException("fromIndex = " + fromIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
        if (toIndex > size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
            throw new IndexOutOfBoundsException("toIndex = " + toIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
        if (fromIndex > toIndex)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
            throw new IllegalArgumentException("fromIndex(" + fromIndex +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
                                               ") > toIndex(" + toIndex + ")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
    private class SubList extends AbstractList<E> implements RandomAccess {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        private final AbstractList<E> parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
        private final int parentOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
        private final int offset;
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   999
        int size;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
        SubList(AbstractList<E> parent,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
                int offset, int fromIndex, int toIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
            this.parent = parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
            this.parentOffset = fromIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
            this.offset = offset + fromIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
            this.size = toIndex - fromIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
            this.modCount = ArrayList.this.modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
        public E set(int index, E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
            rangeCheck(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
            E oldValue = ArrayList.this.elementData(offset + index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
            ArrayList.this.elementData[offset + index] = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
            return oldValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
        public E get(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
            rangeCheck(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
            return ArrayList.this.elementData(offset + index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
        public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
            return this.size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
        public void add(int index, E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
            rangeCheckForAdd(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
            parent.add(parentOffset + index, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
            this.modCount = parent.modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
            this.size++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
        public E remove(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
            rangeCheck(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
            E result = parent.remove(parentOffset + index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
            this.modCount = parent.modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
            this.size--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
            return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
        protected void removeRange(int fromIndex, int toIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
            parent.removeRange(parentOffset + fromIndex,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
                               parentOffset + toIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
            this.modCount = parent.modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
            this.size -= toIndex - fromIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
        public boolean addAll(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
            return addAll(this.size, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
        public boolean addAll(int index, Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
            rangeCheckForAdd(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
            int cSize = c.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
            if (cSize==0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
            parent.addAll(parentOffset + index, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
            this.modCount = parent.modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
            this.size += cSize;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
        public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
            return listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
        public ListIterator<E> listIterator(final int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
            checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
            rangeCheckForAdd(index);
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1078
            final int offset = this.offset;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
            return new ListIterator<E>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
                int cursor = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
                int lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
                int expectedModCount = ArrayList.this.modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
                public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
                    return cursor != SubList.this.size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
                @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
                public E next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
                    int i = cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
                    if (i >= SubList.this.size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
                        throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
                    Object[] elementData = ArrayList.this.elementData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
                    if (offset + i >= elementData.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
                    cursor = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
                    return (E) elementData[offset + (lastRet = i)];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
                public boolean hasPrevious() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
                    return cursor != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
                @SuppressWarnings("unchecked")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
                public E previous() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
                    int i = cursor - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
                    if (i < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
                        throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
                    Object[] elementData = ArrayList.this.elementData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
                    if (offset + i >= elementData.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
                    cursor = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
                    return (E) elementData[offset + (lastRet = i)];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1119
                @SuppressWarnings("unchecked")
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1120
                public void forEachRemaining(Consumer<? super E> consumer) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1121
                    Objects.requireNonNull(consumer);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1122
                    final int size = SubList.this.size;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1123
                    int i = cursor;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1124
                    if (i >= size) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1125
                        return;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1126
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1127
                    final Object[] elementData = ArrayList.this.elementData;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1128
                    if (offset + i >= elementData.length) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1129
                        throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1130
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1131
                    while (i != size && modCount == expectedModCount) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1132
                        consumer.accept((E) elementData[offset + (i++)]);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1133
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1134
                    // update once at end of iteration to reduce heap write traffic
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1135
                    lastRet = cursor = i;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1136
                    checkForComodification();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1137
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1138
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
                public int nextIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
                    return cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
                public int previousIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
                    return cursor - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
                public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
                    if (lastRet < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
                        throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
                        SubList.this.remove(lastRet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
                        cursor = lastRet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
                        lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
                        expectedModCount = ArrayList.this.modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
                    } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
                public void set(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
                    if (lastRet < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
                        throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
                        ArrayList.this.set(offset + lastRet, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
                    } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
                public void add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
                    checkForComodification();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
                        int i = cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
                        SubList.this.add(i, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
                        cursor = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
                        lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
                        expectedModCount = ArrayList.this.modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
                    } catch (IndexOutOfBoundsException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
                final void checkForComodification() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
                    if (expectedModCount != ArrayList.this.modCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
                        throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
        public List<E> subList(int fromIndex, int toIndex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
            subListRangeCheck(fromIndex, toIndex, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
            return new SubList(this, offset, fromIndex, toIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
        private void rangeCheck(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
            if (index < 0 || index >= this.size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
                throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
        private void rangeCheckForAdd(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
            if (index < 0 || index > this.size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
                throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
        private String outOfBoundsMsg(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
            return "Index: "+index+", Size: "+this.size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
        private void checkForComodification() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
            if (ArrayList.this.modCount != this.modCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
        }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1218
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1219
        public Spliterator<E> spliterator() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1220
            checkForComodification();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1221
            return new ArrayListSpliterator<E>(ArrayList.this, offset,
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1222
                                               offset + this.size, this.modCount);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1223
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
    }
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1225
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1226
    @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1227
    public void forEach(Consumer<? super E> action) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1228
        Objects.requireNonNull(action);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1229
        final int expectedModCount = modCount;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1230
        @SuppressWarnings("unchecked")
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1231
        final E[] elementData = (E[]) this.elementData;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1232
        final int size = this.size;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1233
        for (int i=0; modCount == expectedModCount && i < size; i++) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1234
            action.accept(elementData[i]);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1235
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1236
        if (modCount != expectedModCount) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1237
            throw new ConcurrentModificationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1238
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1239
    }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1240
19435
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1241
    /**
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1242
     * Creates a <em><a href="Spliterator.html#binding">late-binding</a></em>
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1243
     * and <em>fail-fast</em> {@link Spliterator} over the elements in this
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1244
     * list.
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1245
     *
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1246
     * <p>The {@code Spliterator} reports {@link Spliterator#SIZED},
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1247
     * {@link Spliterator#SUBSIZED}, and {@link Spliterator#ORDERED}.
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1248
     * Overriding implementations should document the reporting of additional
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1249
     * characteristic values.
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1250
     *
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1251
     * @return a {@code Spliterator} over the elements in this list
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1252
     * @since 1.8
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1253
     */
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 18829
diff changeset
  1254
    @Override
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1255
    public Spliterator<E> spliterator() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1256
        return new ArrayListSpliterator<>(this, 0, -1, 0);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1257
    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1258
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1259
    /** Index-based split-by-two, lazily initialized Spliterator */
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1260
    static final class ArrayListSpliterator<E> implements Spliterator<E> {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1261
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1262
        /*
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1263
         * If ArrayLists were immutable, or structurally immutable (no
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1264
         * adds, removes, etc), we could implement their spliterators
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1265
         * with Arrays.spliterator. Instead we detect as much
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1266
         * interference during traversal as practical without
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1267
         * sacrificing much performance. We rely primarily on
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1268
         * modCounts. These are not guaranteed to detect concurrency
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1269
         * violations, and are sometimes overly conservative about
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1270
         * within-thread interference, but detect enough problems to
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1271
         * be worthwhile in practice. To carry this out, we (1) lazily
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1272
         * initialize fence and expectedModCount until the latest
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1273
         * point that we need to commit to the state we are checking
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1274
         * against; thus improving precision.  (This doesn't apply to
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1275
         * SubLists, that create spliterators with current non-lazy
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1276
         * values).  (2) We perform only a single
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1277
         * ConcurrentModificationException check at the end of forEach
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1278
         * (the most performance-sensitive method). When using forEach
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1279
         * (as opposed to iterators), we can normally only detect
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1280
         * interference after actions, not before. Further
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1281
         * CME-triggering checks apply to all other possible
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1282
         * violations of assumptions for example null or too-small
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1283
         * elementData array given its size(), that could only have
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1284
         * occurred due to interference.  This allows the inner loop
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1285
         * of forEach to run without any further checks, and
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1286
         * simplifies lambda-resolution. While this does entail a
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1287
         * number of checks, note that in the common case of
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1288
         * list.stream().forEach(a), no checks or other computation
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1289
         * occur anywhere other than inside forEach itself.  The other
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1290
         * less-often-used methods cannot take advantage of most of
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1291
         * these streamlinings.
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1292
         */
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1293
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1294
        private final ArrayList<E> list;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1295
        private int index; // current index, modified on advance/split
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1296
        private int fence; // -1 until used; then one past last index
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1297
        private int expectedModCount; // initialized when fence set
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1298
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1299
        /** Create new spliterator covering the given  range */
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1300
        ArrayListSpliterator(ArrayList<E> list, int origin, int fence,
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1301
                             int expectedModCount) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1302
            this.list = list; // OK if null unless traversed
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1303
            this.index = origin;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1304
            this.fence = fence;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1305
            this.expectedModCount = expectedModCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1306
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1307
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1308
        private int getFence() { // initialize fence to size on first use
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1309
            int hi; // (a specialized variant appears in method forEach)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1310
            ArrayList<E> lst;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1311
            if ((hi = fence) < 0) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1312
                if ((lst = list) == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1313
                    hi = fence = 0;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1314
                else {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1315
                    expectedModCount = lst.modCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1316
                    hi = fence = lst.size;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1317
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1318
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1319
            return hi;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1320
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1321
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1322
        public ArrayListSpliterator<E> trySplit() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1323
            int hi = getFence(), lo = index, mid = (lo + hi) >>> 1;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1324
            return (lo >= mid) ? null : // divide range in half unless too small
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1325
                new ArrayListSpliterator<E>(list, lo, index = mid,
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1326
                                            expectedModCount);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1327
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1328
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1329
        public boolean tryAdvance(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1330
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1331
                throw new NullPointerException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1332
            int hi = getFence(), i = index;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1333
            if (i < hi) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1334
                index = i + 1;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1335
                @SuppressWarnings("unchecked") E e = (E)list.elementData[i];
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1336
                action.accept(e);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1337
                if (list.modCount != expectedModCount)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1338
                    throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1339
                return true;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1340
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1341
            return false;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1342
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1343
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1344
        public void forEachRemaining(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1345
            int i, hi, mc; // hoist accesses and checks from loop
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1346
            ArrayList<E> lst; Object[] a;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1347
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1348
                throw new NullPointerException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1349
            if ((lst = list) != null && (a = lst.elementData) != null) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1350
                if ((hi = fence) < 0) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1351
                    mc = lst.modCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1352
                    hi = lst.size;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1353
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1354
                else
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1355
                    mc = expectedModCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1356
                if ((i = index) >= 0 && (index = hi) <= a.length) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1357
                    for (; i < hi; ++i) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1358
                        @SuppressWarnings("unchecked") E e = (E) a[i];
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1359
                        action.accept(e);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1360
                    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1361
                    if (lst.modCount == mc)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1362
                        return;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1363
                }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1364
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1365
            throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1366
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1367
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1368
        public long estimateSize() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1369
            return (long) (getFence() - index);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1370
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1371
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1372
        public int characteristics() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1373
            return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1374
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1375
    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 17166
diff changeset
  1376
17166
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1377
    @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1378
    public boolean removeIf(Predicate<? super E> filter) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1379
        Objects.requireNonNull(filter);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1380
        // figure out which elements are to be removed
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1381
        // any exception thrown from the filter predicate at this stage
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1382
        // will leave the collection unmodified
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1383
        int removeCount = 0;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1384
        final BitSet removeSet = new BitSet(size);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1385
        final int expectedModCount = modCount;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1386
        final int size = this.size;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1387
        for (int i=0; modCount == expectedModCount && i < size; i++) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1388
            @SuppressWarnings("unchecked")
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1389
            final E element = (E) elementData[i];
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1390
            if (filter.test(element)) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1391
                removeSet.set(i);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1392
                removeCount++;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1393
            }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1394
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1395
        if (modCount != expectedModCount) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1396
            throw new ConcurrentModificationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1397
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1398
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1399
        // shift surviving elements left over the spaces left by removed elements
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1400
        final boolean anyToRemove = removeCount > 0;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1401
        if (anyToRemove) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1402
            final int newSize = size - removeCount;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1403
            for (int i=0, j=0; (i < size) && (j < newSize); i++, j++) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1404
                i = removeSet.nextClearBit(i);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1405
                elementData[j] = elementData[i];
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1406
            }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1407
            for (int k=newSize; k < size; k++) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1408
                elementData[k] = null;  // Let gc do its work
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1409
            }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1410
            this.size = newSize;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1411
            if (modCount != expectedModCount) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1412
                throw new ConcurrentModificationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1413
            }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1414
            modCount++;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1415
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1416
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1417
        return anyToRemove;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1418
    }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1419
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1420
    @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1421
    @SuppressWarnings("unchecked")
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1422
    public void replaceAll(UnaryOperator<E> operator) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1423
        Objects.requireNonNull(operator);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1424
        final int expectedModCount = modCount;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1425
        final int size = this.size;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1426
        for (int i=0; modCount == expectedModCount && i < size; i++) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1427
            elementData[i] = operator.apply((E) elementData[i]);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1428
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1429
        if (modCount != expectedModCount) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1430
            throw new ConcurrentModificationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1431
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1432
        modCount++;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1433
    }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1434
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1435
    @Override
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1436
    @SuppressWarnings("unchecked")
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1437
    public void sort(Comparator<? super E> c) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1438
        final int expectedModCount = modCount;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1439
        Arrays.sort((E[]) elementData, 0, size, c);
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1440
        if (modCount != expectedModCount) {
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1441
            throw new ConcurrentModificationException();
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1442
        }
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1443
        modCount++;
c83a0fa44906 8001647: default methods for Collections - forEach, removeIf, replaceAll, sort
akhil
parents: 16855
diff changeset
  1444
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
}