public class SparseArrayList<T>
extends java.util.ArrayList<T>
SparseList implements a sparse array. This class is identical to java.util.ArrayList, except that it permits assignment to array indexes that are beyond the current length of the list, using the expected set() and add() methods. The list is extended and null-filled in that case.
Note that this implementation is not synchronized. If multiple threads access an ArrayList instance concurrently, and at least one of the threads modifies the list structurally, it must be synchronized externally. (A structural modification is any operation that adds or deletes one or more elements, or explicitly resizes the backing array; merely setting the value of an element is not a structural modification.) This is typically accomplished by synchronizing on some object that naturally encapsulates the list. If no such object exists, the list should be wrapped using the Collections.synchronizedList method. This is best done at creation time, to prevent accidental unsynchronized access to the list:
List list = Collections.synchronizedList(new SparseList());
The iterators returned by this class's iterator and listIterator methods are fail-fast: if list is structurally modified at any time after the iterator is created, in any way except through the iterator's own remove or add methods, the iterator will throw a ConcurrentModificationException. Thus, in the face of concurrent modification, the iterator fails quickly and cleanly, rather than risking arbitrary, non-deterministic behavior at an undetermined time in the future.
Constructor and Description |
---|
SparseArrayList()
Allocate a new SparseList object with the same default
initial capacity as a java.util.ArrayList object created
with its default constructor.
|
SparseArrayList(java.util.Collection<T> c)
Constructs a list containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
|
SparseArrayList(int initialCapacity)
Constructs an empty list with the specified initial capacity.
|
Modifier and Type | Method and Description |
---|---|
void |
add(int index,
T element)
Inserts the specified element at the specified position in this
list.
|
T |
set(int index,
T element)
Replaces the element at the specified position in this list with the
specified element.
|
add, addAll, addAll, clear, clone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, size, sort, spliterator, subList, toArray, toArray, trimToSize
public SparseArrayList()
public SparseArrayList(int initialCapacity)
initialCapacity
- the initial capacity of the list.java.lang.IllegalArgumentException
- if the specified initial capacity
is negativepublic SparseArrayList(java.util.Collection<T> c)
c
- the collection whose elements are to be placed into this list.java.lang.NullPointerException
- if the specified collection is null.public void add(int index, T element)
set(int,Object)
.public T set(int index, T element) throws java.lang.IndexOutOfBoundsException
set
in interface java.util.List<T>
set
in class java.util.ArrayList<T>
index
- index of element to replace or storeelement
- element to be stored at the specified positionjava.lang.IndexOutOfBoundsException
- if index is negative