Packages

c

java.util

AbstractSequentialList

abstract class AbstractSequentialList[E] extends AbstractList[E]

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

Instance Constructors

  1. new AbstractSequentialList()
    Attributes
    protected

Abstract Value Members

  1. 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
    AbstractSequentialListAbstractListList
  5. def add(element: E): Boolean
    Definition Classes
    AbstractListAbstractCollectionCollection
  6. def addAll(index: Int, c: Collection[_ <: E]): Boolean
    Definition Classes
    AbstractSequentialListAbstractListList
  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
    Definition Classes
    AbstractList
  10. def checkIndexOnBounds(index: Int): Unit
    Attributes
    protected
    Definition Classes
    AbstractList
  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. def get(index: Int): E
    Definition Classes
    AbstractSequentialListAbstractListList
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AbstractListCollection → AnyRef → Any
  22. def indexOf(o: Any): Int
    Definition Classes
    AbstractListList
  23. def isEmpty(): Boolean
    Definition Classes
    AbstractCollectionCollection
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. def iterator(): Iterator[E]
    Definition Classes
    AbstractListAbstractCollectionCollectionIterable
  26. def lastIndexOf(o: Any): Int
    Definition Classes
    AbstractListList
  27. def listIterator(index: Int): ListIterator[E]
    Definition Classes
    AbstractListList
  28. def listIterator(): ListIterator[E]
    Definition Classes
    AbstractListList
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. def parallelStream(): Stream[E]
    Definition Classes
    Collection
  33. def remove(index: Int): E
    Definition Classes
    AbstractSequentialListAbstractListList
  34. def remove(o: Any): Boolean
    Definition Classes
    AbstractCollectionCollection
  35. def removeAll(c: Collection[_]): Boolean
    Definition Classes
    AbstractCollectionCollection
  36. def removeIf(filter: Predicate[_ >: E]): Boolean
    Definition Classes
    Collection
  37. def removeRange(fromIndex: Int, toIndex: Int): Unit
    Attributes
    protected
    Definition Classes
    AbstractList
  38. def replaceAll(operator: UnaryOperator[E]): Unit
    Definition Classes
    List
  39. def retainAll(c: Collection[_]): Boolean
    Definition Classes
    AbstractCollectionCollection
  40. def set(index: Int, element: E): E
    Definition Classes
    AbstractSequentialListAbstractListList
  41. def sort(c: Comparator[_ >: E]): Unit
    Definition Classes
    List
  42. 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
  43. def stream(): Stream[E]
    Definition Classes
    Collection
  44. def subList(fromIndex: Int, toIndex: Int): List[E]
    Definition Classes
    AbstractListList
  45. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  46. def toArray[T <: AnyRef](a: Array[T]): Array[T]
    Definition Classes
    AbstractCollectionCollection
  47. def toArray(): Array[AnyRef]
    Definition Classes
    AbstractCollectionCollection
  48. def toString(): String
    Definition Classes
    AbstractCollection → AnyRef → Any
  49. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  51. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AbstractList[E]

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