Uses of Class
java.util.AbstractList

Packages that use AbstractList
Package Description
java.util  
  • Uses of AbstractList in java.util

    Subclasses of AbstractList in java.util
    Modifier and Type Class Description
    class  AbstractSequentialList<E>
    AbstractSequentialList is an abstract implementation of the List interface.
    class  ArrayList<E>
    ArrayList is an implementation of List, backed by an array.
    class  LinkedList<E>
    LinkedList is an implementation of List, backed by a doubly-linked list.
    class  Stack<E>
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects.
    class  UnsafeArrayList<T>
    An array-backed list that exposes its array.
    class  Vector<E>
    Vector is an implementation of List, backed by an array and synchronized.