jdk/src/share/classes/java/util/AbstractCollection.java
author xdono
Wed, 02 Jul 2008 12:55:45 -0700
changeset 715 f16baef3a20e
parent 2 90ce3da70b43
child 5466 f130bb07764b
permissions -rw-r--r--
6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * This class provides a skeletal implementation of the <tt>Collection</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * interface, to minimize the effort required to implement this interface. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * To implement an unmodifiable collection, the programmer needs only to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * extend this class and provide implementations for the <tt>iterator</tt> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * <tt>size</tt> methods.  (The iterator returned by the <tt>iterator</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * method must implement <tt>hasNext</tt> and <tt>next</tt>.)<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * To implement a modifiable collection, the programmer must additionally
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * override this class's <tt>add</tt> method (which otherwise throws an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <tt>UnsupportedOperationException</tt>), and the iterator returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * <tt>iterator</tt> method must additionally implement its <tt>remove</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * method.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * The programmer should generally provide a void (no argument) and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * <tt>Collection</tt> constructor, as per the recommendation in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * <tt>Collection</tt> interface specification.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * The documentation for each non-abstract method in this class describes its
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * implementation in detail.  Each of these methods may be overridden if
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * the collection being implemented admits a more efficient implementation.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * This class is a member of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * @author  Josh Bloch
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * @author  Neal Gafter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * @see Collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
public abstract class AbstractCollection<E> implements Collection<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * Sole constructor.  (For invocation by subclass constructors, typically
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * implicit.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    protected AbstractCollection() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    // Query Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * Returns an iterator over the elements contained in this collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * @return an iterator over the elements contained in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    public abstract Iterator<E> iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    public abstract int size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * <p>This implementation returns <tt>size() == 0</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    public boolean isEmpty() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        return size() == 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * <p>This implementation iterates over the elements in the collection,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * checking each element in turn for equality with the specified element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * @throws ClassCastException   {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        Iterator<E> e = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        if (o==null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            while (e.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                if (e.next()==null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            while (e.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
                if (o.equals(e.next()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * <p>This implementation returns an array containing all the elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * returned by this collection's iterator, in the same order, stored in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * consecutive elements of the array, starting with index {@code 0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * The length of the returned array is equal to the number of elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * returned by the iterator, even if the size of this collection changes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * during iteration, as might happen if the collection permits
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * concurrent modification during iteration.  The {@code size} method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * called only as an optimization hint; the correct result is returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * even if the iterator returns a different number of elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * <p>This method is equivalent to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *  <pre> {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * List<E> list = new ArrayList<E>(size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * for (E e : this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     *     list.add(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * return list.toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * }</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    public Object[] toArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        // Estimate size of array; be prepared to see more or fewer elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        Object[] r = new Object[size()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        Iterator<E> it = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        for (int i = 0; i < r.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            if (! it.hasNext()) // fewer elements than expected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
                return Arrays.copyOf(r, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            r[i] = it.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        return it.hasNext() ? finishToArray(r, it) : r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * <p>This implementation returns an array containing all the elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * returned by this collection's iterator in the same order, stored in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * consecutive elements of the array, starting with index {@code 0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * If the number of elements returned by the iterator is too large to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * fit into the specified array, then the elements are returned in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * newly allocated array with length equal to the number of elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * returned by the iterator, even if the size of this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * changes during iteration, as might happen if the collection permits
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * concurrent modification during iteration.  The {@code size} method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * called only as an optimization hint; the correct result is returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * even if the iterator returns a different number of elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * <p>This method is equivalent to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     *  <pre> {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * List<E> list = new ArrayList<E>(size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * for (E e : this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     *     list.add(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * return list.toArray(a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * }</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * @throws ArrayStoreException  {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        // Estimate size of array; be prepared to see more or fewer elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        int size = size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        T[] r = a.length >= size ? a :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                  (T[])java.lang.reflect.Array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                  .newInstance(a.getClass().getComponentType(), size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        Iterator<E> it = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        for (int i = 0; i < r.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            if (! it.hasNext()) { // fewer elements than expected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                if (a != r)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                    return Arrays.copyOf(r, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                r[i] = null; // null-terminate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                return r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            r[i] = (T)it.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        return it.hasNext() ? finishToArray(r, it) : r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * Reallocates the array being used within toArray when the iterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * returned more elements than expected, and finishes filling it from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * the iterator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * @param r the array, replete with previously stored elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * @param it the in-progress iterator over this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @return array containing the elements in the given array, plus any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *         further elements returned by the iterator, trimmed to size
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    private static <T> T[] finishToArray(T[] r, Iterator<?> it) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        int i = r.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        while (it.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            int cap = r.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            if (i == cap) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
                int newCap = ((cap / 2) + 1) * 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
                if (newCap <= cap) { // integer overflow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
                    if (cap == Integer.MAX_VALUE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
                        throw new OutOfMemoryError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
                            ("Required array size too large");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
                    newCap = Integer.MAX_VALUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                r = Arrays.copyOf(r, newCap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            r[i++] = (T)it.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        // trim if overallocated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        return (i == r.length) ? r : Arrays.copyOf(r, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    // Modification Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * <p>This implementation always throws an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * <tt>UnsupportedOperationException</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * @throws UnsupportedOperationException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * @throws ClassCastException            {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * @throws NullPointerException          {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * @throws IllegalArgumentException      {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * @throws IllegalStateException         {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    public boolean add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        throw new UnsupportedOperationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * <p>This implementation iterates over the collection looking for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * specified element.  If it finds the element, it removes the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * from the collection using the iterator's remove method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * <p>Note that this implementation throws an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * <tt>UnsupportedOperationException</tt> if the iterator returned by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * collection's iterator method does not implement the <tt>remove</tt>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * method and this collection contains the specified object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * @throws UnsupportedOperationException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * @throws ClassCastException            {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * @throws NullPointerException          {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        Iterator<E> e = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        if (o==null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
            while (e.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
                if (e.next()==null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
                    e.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            while (e.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
                if (o.equals(e.next())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
                    e.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    // Bulk Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * <p>This implementation iterates over the specified collection,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * checking each element returned by the iterator in turn to see
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * if it's contained in this collection.  If all elements are so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * contained <tt>true</tt> is returned, otherwise <tt>false</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * @throws ClassCastException            {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * @throws NullPointerException          {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * @see #contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    public boolean containsAll(Collection<?> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        Iterator<?> e = c.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        while (e.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            if (!contains(e.next()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * <p>This implementation iterates over the specified collection, and adds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * each object returned by the iterator to this collection, in turn.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * <p>Note that this implementation will throw an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * <tt>UnsupportedOperationException</tt> unless <tt>add</tt> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * overridden (assuming the specified collection is non-empty).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * @throws UnsupportedOperationException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * @throws ClassCastException            {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * @throws NullPointerException          {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * @throws IllegalArgumentException      {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * @throws IllegalStateException         {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * @see #add(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    public boolean addAll(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        boolean modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        Iterator<? extends E> e = c.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        while (e.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            if (add(e.next()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
                modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        return modified;
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
     * {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * <p>This implementation iterates over this collection, checking each
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * element returned by the iterator in turn to see if it's contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * in the specified collection.  If it's so contained, it's removed from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * this collection with the iterator's <tt>remove</tt> method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     * <p>Note that this implementation will throw an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * <tt>UnsupportedOperationException</tt> if the iterator returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * <tt>iterator</tt> method does not implement the <tt>remove</tt> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * and this collection contains one or more elements in common with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * @throws UnsupportedOperationException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * @throws ClassCastException            {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * @throws NullPointerException          {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * @see #remove(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * @see #contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    public boolean removeAll(Collection<?> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        boolean modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        Iterator<?> e = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
        while (e.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
            if (c.contains(e.next())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
                e.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
                modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        return modified;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * <p>This implementation iterates over this collection, checking each
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * element returned by the iterator in turn to see if it's contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * in the specified collection.  If it's not so contained, it's removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * from this collection with the iterator's <tt>remove</tt> method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * <p>Note that this implementation will throw an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * <tt>UnsupportedOperationException</tt> if the iterator returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * <tt>iterator</tt> method does not implement the <tt>remove</tt> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * and this collection contains one or more elements not present in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * specified collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * @throws UnsupportedOperationException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * @throws ClassCastException            {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * @throws NullPointerException          {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * @see #remove(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * @see #contains(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    public boolean retainAll(Collection<?> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        boolean modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        Iterator<E> e = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        while (e.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
            if (!c.contains(e.next())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
                e.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
                modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        return modified;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * <p>This implementation iterates over this collection, removing each
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * element using the <tt>Iterator.remove</tt> operation.  Most
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * implementations will probably choose to override this method for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * efficiency.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * <p>Note that this implementation will throw an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * <tt>UnsupportedOperationException</tt> if the iterator returned by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * collection's <tt>iterator</tt> method does not implement the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * <tt>remove</tt> method and this collection is non-empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * @throws UnsupportedOperationException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        Iterator<E> e = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        while (e.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
            e.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
            e.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    //  String conversion
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * Returns a string representation of this collection.  The string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * representation consists of a list of the collection's elements in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * order they are returned by its iterator, enclosed in square brackets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * (<tt>"[]"</tt>).  Adjacent elements are separated by the characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * <tt>", "</tt> (comma and space).  Elements are converted to strings as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * by {@link String#valueOf(Object)}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * @return a string representation of this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        Iterator<E> i = iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        if (! i.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
            return "[]";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        StringBuilder sb = new StringBuilder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        sb.append('[');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
            E e = i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
            sb.append(e == this ? "(this Collection)" : e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
            if (! i.hasNext())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                return sb.append(']').toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
            sb.append(", ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
}