Java java.util.concurrent CopyOnWriteArrayList fields, constructors, methods, implement or subclass

Example usage for Java java.util.concurrent CopyOnWriteArrayList fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.concurrent CopyOnWriteArrayList.

The text is from its open source code.

Constructor

CopyOnWriteArrayList()
Creates an empty list.
CopyOnWriteArrayList(Collection 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.

Method

booleanadd(E e)
Appends the specified element to the end of this list.
voidadd(int index, E element)
Inserts the specified element at the specified position in this list.
booleanaddAll(Collection 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.
voidclear()
Removes all of the elements from this list.
booleancontains(Object o)
Returns true if this list contains the specified element.
Eget(int index)
booleanisEmpty()
Returns true if this list contains no elements.
Iteratoriterator()
Returns an iterator over the elements in this list in proper sequence.
ListIteratorlistIterator()

The returned iterator provides a snapshot of the state of the list when the iterator was constructed.

Eremove(int index)
Removes the element at the specified position in this list.
booleanremove(Object o)
Removes the first occurrence of the specified element from this list, if it is present.
booleanremoveAll(Collection c)
Removes from this list all of its elements that are contained in the specified collection.
Eset(int index, E element)
Replaces the element at the specified position in this list with the specified element.
intsize()
Returns the number of elements in this list.
voidsort(Comparator 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.