Example usage for Java java.util.concurrent CopyOnWriteArrayList fields, constructors, methods, implement or subclass
The text is from its open source code.
CopyOnWriteArrayList() Creates an empty list. | |
CopyOnWriteArrayList(Collection extends E> c) Creates a list containing the elements of the specified collection, in the order they are returned by the collection's iterator. | |
CopyOnWriteArrayList(E[] toCopyIn) Creates a list holding a copy of the given array. |
boolean | add(E e) Appends the specified element to the end of this list. |
void | add(int index, E element) Inserts the specified element at the specified position in this list. |
boolean | addAll(Collection extends E> c) Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator. |
void | clear() Removes all of the elements from this list. |
boolean | contains(Object o) Returns true if this list contains the specified element. |
E | get(int index) |
boolean | isEmpty() Returns true if this list contains no elements. |
Iterator | iterator() Returns an iterator over the elements in this list in proper sequence. |
ListIterator | listIterator() The returned iterator provides a snapshot of the state of the list when the iterator was constructed. |
E | remove(int index) Removes the element at the specified position in this list. |
boolean | remove(Object o) Removes the first occurrence of the specified element from this list, if it is present. |
boolean | removeAll(Collection> c) Removes from this list all of its elements that are contained in the specified collection. |
E | set(int index, E element) Replaces the element at the specified position in this list with the specified element. |
int | size() Returns the number of elements in this list. |
void | sort(Comparator super E> c) |
Object[] | toArray() Returns an array containing all of the elements in this list in proper sequence (from first to last element). |
T[] | toArray(T[] a) Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array. |