|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<T>
org.clapper.util.misc.SparseArrayList<T>
public class SparseArrayList<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.
| Field Summary |
|---|
| Fields inherited from class java.util.AbstractList |
|---|
modCount |
| Constructor Summary | |
|---|---|
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. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.util.ArrayList |
|---|
add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, removeRange, size, toArray, toArray, trimToSize |
| Methods inherited from class java.util.AbstractList |
|---|
equals, hashCode, iterator, listIterator, listIterator, subList |
| Methods inherited from class java.util.AbstractCollection |
|---|
containsAll, removeAll, retainAll, toString |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.List |
|---|
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList |
| Constructor Detail |
|---|
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.| Method Detail |
|---|
public void add(int index,
T element)
set(int,Object).
add in interface java.util.List<T>add in class java.util.ArrayList<T>index - index at which the specified element is to be inserted.element - element to be inserted.
java.lang.IndexOutOfBoundsException - if the index is negative.
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 position
java.lang.IndexOutOfBoundsException - if index is negative
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||