Packages

c

java.util

AbstractList

abstract class AbstractList[E] extends AbstractCollection[E] with List[E]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AbstractList
  2. List
  3. SequencedCollection
  4. AbstractCollection
  5. Collection
  6. Iterable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AbstractList()
    Attributes
    protected

Abstract Value Members

  1. abstract def get(index: Int): E
    Definition Classes
    AbstractListList
  2. abstract def size(): Int
    Definition Classes
    AbstractCollectionCollection

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def add(index: Int, element: E): Unit
    Definition Classes
    AbstractListList
  5. def add(element: E): Boolean
    Definition Classes
    AbstractListAbstractCollectionCollection
  6. def addAll(index: Int, c: Collection[_ <: E]): Boolean
    Definition Classes
    AbstractListList
  7. def addAll(c: Collection[_ <: E]): Boolean
    Definition Classes
    AbstractCollectionCollection
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def checkIndexInBounds(index: Int): Unit
    Attributes
    protected
  10. def checkIndexOnBounds(index: Int): Unit
    Attributes
    protected
  11. def clear(): Unit
    Definition Classes
    AbstractListAbstractCollectionCollection
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  13. def contains(o: Any): Boolean
    Definition Classes
    AbstractCollectionCollection
  14. def containsAll(c: Collection[_]): Boolean
    Definition Classes
    AbstractCollectionCollection
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(o: Any): Boolean
    Definition Classes
    AbstractListCollection → AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  18. def forEach(action: Consumer[_ >: E]): Unit
    Definition Classes
    Iterable
  19. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def hashCode(): Int
    Definition Classes
    AbstractListCollection → AnyRef → Any
  21. def indexOf(o: Any): Int
    Definition Classes
    AbstractListList
  22. def isEmpty(): Boolean
    Definition Classes
    AbstractCollectionCollection
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. def iterator(): Iterator[E]
    Definition Classes
    AbstractListAbstractCollectionCollectionIterable
  25. def lastIndexOf(o: Any): Int
    Definition Classes
    AbstractListList
  26. def listIterator(index: Int): ListIterator[E]
    Definition Classes
    AbstractListList
  27. def listIterator(): ListIterator[E]
    Definition Classes
    AbstractListList
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. def parallelStream(): Stream[E]
    Definition Classes
    Collection
  32. def remove(index: Int): E
    Definition Classes
    AbstractListList
  33. def remove(o: Any): Boolean
    Definition Classes
    AbstractCollectionCollection
  34. def removeAll(c: Collection[_]): Boolean
    Definition Classes
    AbstractCollectionCollection
  35. def removeIf(filter: Predicate[_ >: E]): Boolean
    Definition Classes
    Collection
  36. def removeRange(fromIndex: Int, toIndex: Int): Unit
    Attributes
    protected
  37. def replaceAll(operator: UnaryOperator[E]): Unit
    Definition Classes
    List
  38. def retainAll(c: Collection[_]): Boolean
    Definition Classes
    AbstractCollectionCollection
  39. def set(index: Int, element: E): E
    Definition Classes
    AbstractListList
  40. def sort(c: Comparator[_ >: E]): Unit
    Definition Classes
    List
  41. 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
    CollectionIterable
  42. def stream(): Stream[E]
    Definition Classes
    Collection
  43. def subList(fromIndex: Int, toIndex: Int): List[E]
    Definition Classes
    AbstractListList
  44. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  45. def toArray[T <: AnyRef](a: Array[T]): Array[T]
    Definition Classes
    AbstractCollectionCollection
  46. def toArray(): Array[AnyRef]
    Definition Classes
    AbstractCollectionCollection
  47. def toString(): String
    Definition Classes
    AbstractCollection → AnyRef → Any
  48. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  49. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from List[E]

Inherited from SequencedCollection[E]

Inherited from AbstractCollection[E]

Inherited from Collection[E]

Inherited from Iterable[E]

Inherited from AnyRef

Inherited from Any

Ungrouped