class Vector[E <: AnyRef] extends AbstractList[E] with List[E] with RandomAccess with Cloneable with Serializable
- Annotations
- @SerialVersionUID()
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Vector
- Serializable
- Cloneable
- RandomAccess
- AbstractList
- List
- SequencedCollection
- AbstractCollection
- Collection
- Iterable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
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(obj: E): Boolean
- Definition Classes
- Vector → AbstractList → AbstractCollection → Collection
- def add(location: Int, obj: E): Unit
- Definition Classes
- Vector → AbstractList → List
- def addAll(collection: Collection[_ <: E]): Boolean
- Definition Classes
- Vector → AbstractCollection → Collection
- def addAll(_location: Int, collection: Collection[_ <: E]): Boolean
- Definition Classes
- Vector → AbstractList → List
- def addElement(obj: E): Unit
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def capacity: Int
- var capacityIncrement: Int
- Attributes
- protected
- def checkIndexInBounds(index: Int): Unit
- Attributes
- protected
- Definition Classes
- AbstractList
- def checkIndexOnBounds(index: Int): Unit
- Attributes
- protected
- Definition Classes
- AbstractList
- def clear(): Unit
- Definition Classes
- Vector → AbstractList → AbstractCollection → Collection
- def clone(): AnyRef
- Definition Classes
- Vector → AnyRef
- def contains(obj: Any): Boolean
- Definition Classes
- Vector → AbstractCollection → Collection
- def containsAll(collection: Collection[_]): Boolean
- Definition Classes
- Vector → AbstractCollection → Collection
- def copyInto(elements: Array[AnyRef]): Unit
- def elementAt(location: Int): E
- var elementCount: Int
- Attributes
- protected
- var elementData: Array[E]
- Attributes
- protected
- def elements: Enumeration[E]
- def ensureCapacity(minimumCapacity: Int): Unit
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(obj: Any): Boolean
- Definition Classes
- Vector → AbstractList → Collection → AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def firstElement: E
- def forEach(action: Consumer[_ >: E]): Unit
- Definition Classes
- Iterable
- def get(location: Int): E
- Definition Classes
- Vector → AbstractList → List
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- Vector → AbstractList → Collection → AnyRef → Any
- def indexOf(obj: Any, location: Int): Int
- def indexOf(obj: Any): Int
- Definition Classes
- Vector → AbstractList → List
- def insertElementAt(obj: E, location: Int): Unit
- def isEmpty(): Boolean
- Definition Classes
- Vector → AbstractCollection → Collection
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def iterator(): Iterator[E]
- Definition Classes
- AbstractList → AbstractCollection → Collection → Iterable
- def lastElement: E
- def lastIndexOf(obj: Any, location: Int): Int
- def lastIndexOf(obj: Any): Int
- Definition Classes
- Vector → AbstractList → List
- def listIterator(index: Int): ListIterator[E]
- Definition Classes
- AbstractList → List
- def listIterator(): ListIterator[E]
- Definition Classes
- AbstractList → 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(obj: Any): Boolean
- Definition Classes
- Vector → AbstractCollection → Collection
- def remove(location: Int): E
- Definition Classes
- Vector → AbstractList → List
- def removeAll(collection: Collection[_]): Boolean
- Definition Classes
- Vector → AbstractCollection → Collection
- def removeAllElements(): Unit
- def removeElement(obj: Any): Boolean
- def removeElementAt(location: Int): Unit
- def removeIf(filter: Predicate[_ >: E]): Boolean
- Definition Classes
- Collection
- def removeRange(start: Int, end: Int): Unit
- Attributes
- protected
- Definition Classes
- Vector → AbstractList
- def replaceAll(operator: UnaryOperator[E]): Unit
- Definition Classes
- List
- def retainAll(collection: Collection[_]): Boolean
- Definition Classes
- Vector → AbstractCollection → Collection
- def set(location: Int, obj: E): E
- Definition Classes
- Vector → AbstractList → List
- def setElementAt(obj: E, location: Int): Unit
- def setSize(length: Int): Unit
- def size(): Int
- Definition Classes
- Vector → AbstractCollection → 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
- AbstractList → List
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toArray[T <: AnyRef](_contents: Array[T]): Array[T]
- Definition Classes
- Vector → AbstractCollection → Collection
- def toArray(): Array[AnyRef]
- Definition Classes
- Vector → AbstractCollection → Collection
- def toString(): String
- Definition Classes
- Vector → AbstractCollection → AnyRef → Any
- def trimToSize(): Unit
- 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()