class CopyOnWriteArrayList[E <: AnyRef] extends List[E] with RandomAccess with Cloneable with Serializable
- Self Type
- CopyOnWriteArrayList[E]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CopyOnWriteArrayList
- Serializable
- Cloneable
- RandomAccess
- List
- SequencedCollection
- Collection
- Iterable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new CopyOnWriteArrayList(toCopyIn: Array[E])
- new CopyOnWriteArrayList(c: Collection[_ <: E])
- new CopyOnWriteArrayList()
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def add(index: Int, element: E): Unit
- Definition Classes
- CopyOnWriteArrayList → List
- def add(e: E): Boolean
- Definition Classes
- CopyOnWriteArrayList → Collection
- def addAll(index: Int, c: Collection[_ <: E]): Boolean
- Definition Classes
- CopyOnWriteArrayList → List
- def addAll(c: Collection[_ <: E]): Boolean
- Definition Classes
- CopyOnWriteArrayList → Collection
- def addAllAbsent(c: Collection[_ <: E]): Int
- def addIfAbsent(e: E): Boolean
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def checkIndexInBounds(index: Int): Unit
- Attributes
- protected
- def checkIndexOnBounds(index: Int): Unit
- Attributes
- protected
- def clear(): Unit
- Definition Classes
- CopyOnWriteArrayList → Collection
- def clone(): AnyRef
- Definition Classes
- CopyOnWriteArrayList → AnyRef
- def contains(o: Any): Boolean
- Definition Classes
- CopyOnWriteArrayList → Collection
- def containsAll(c: Collection[_]): Boolean
- Definition Classes
- CopyOnWriteArrayList → Collection
- def copyIfNeeded(): Unit
- Attributes
- protected
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(obj: Any): Boolean
- Definition Classes
- CopyOnWriteArrayList → Collection → AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def forEach(action: Consumer[_ >: E]): Unit
- Definition Classes
- Iterable
- def get(index: Int): E
- Definition Classes
- CopyOnWriteArrayList → List
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- CopyOnWriteArrayList → Collection → AnyRef → Any
- def indexOf(e: E, index: Int): Int
- def indexOf(o: Any): Int
- Definition Classes
- CopyOnWriteArrayList → List
- def innerGet(index: Int): E
- Attributes
- protected
- def innerInsert(index: Int, elem: E): Unit
- Attributes
- protected
- def innerInsertMany(index: Int, items: Collection[_ <: E]): Unit
- Attributes
- protected
- def innerPush(elem: E): Unit
- Attributes
- protected
- def innerRemove(index: Int): E
- Attributes
- protected
- def innerRemoveMany(index: Int, count: Int): Unit
- Attributes
- protected
- def innerSet(index: Int, elem: E): Unit
- Attributes
- protected
- def innerSnapshot(): ArrayList[E]
- Attributes
- protected
- def isEmpty(): Boolean
- Definition Classes
- CopyOnWriteArrayList → Collection
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def iterator(): Iterator[E]
- Definition Classes
- CopyOnWriteArrayList → Collection → Iterable
- def lastIndexOf(e: E, index: Int): Int
- def lastIndexOf(o: Any): Int
- Definition Classes
- CopyOnWriteArrayList → List
- def listIterator(index: Int): ListIterator[E]
- Definition Classes
- CopyOnWriteArrayList → List
- def listIterator(): ListIterator[E]
- Definition Classes
- CopyOnWriteArrayList → List
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def parallelStream(): Stream[E]
- Definition Classes
- Collection
- def remove(o: Any): Boolean
- Definition Classes
- CopyOnWriteArrayList → Collection
- def remove(index: Int): E
- Definition Classes
- CopyOnWriteArrayList → List
- def removeAll(c: Collection[_]): Boolean
- Definition Classes
- CopyOnWriteArrayList → Collection
- def removeIf(filter: Predicate[_ >: E]): Boolean
- Definition Classes
- CopyOnWriteArrayList → Collection
- def replaceAll(operator: UnaryOperator[E]): Unit
- Definition Classes
- CopyOnWriteArrayList → List
- def retainAll(c: Collection[_]): Boolean
- Definition Classes
- CopyOnWriteArrayList → Collection
- def set(index: Int, element: E): E
- Definition Classes
- CopyOnWriteArrayList → List
- def size(): Int
- Definition Classes
- CopyOnWriteArrayList → Collection
- def sort(c: Comparator[_ >: E]): Unit
- Definition Classes
- List
- def spliterator(): Spliterator[E]
From the Java 8 documentation: The default implementation should usually be overridden.
From the Java 8 documentation: The default implementation should usually be overridden. The spliterator returned by the default implementation has poor splitting capabilities, is unsized, and does not report any spliterator characteristics. Implementing classes can nearly always provide a better implementation.
- Definition Classes
- Collection → Iterable
- def stream(): Stream[E]
- Definition Classes
- Collection
- def subList(fromIndex: Int, toIndex: Int): List[E]
- Definition Classes
- CopyOnWriteArrayList → List
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toArray[T <: AnyRef](a: Array[T]): Array[T]
- Definition Classes
- CopyOnWriteArrayList → Collection
- def toArray(): Array[AnyRef]
- Definition Classes
- CopyOnWriteArrayList → Collection
- def toString(): String
- Definition Classes
- CopyOnWriteArrayList → AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()