Uses of Interface
java.util.List

Packages that use List
java.util   
 

Uses of List in java.util
 

Classes in java.util that implement List
 class AbstractList
          This class provides a skeletal implementation of the List interface to minimize the effort required to implement this interface backed by a "random access" data store (such as an array).
 class ArrayList
          Resizable-array implementation of the List interface.
 class Stack
          The Stack class represents a last-in-first-out (LIFO) stack of objects.
 class Vector
          The Vector class implements a growable array of objects.
 

Methods in java.util that return List
 List Vector.subList(int fromIndex, int toIndex)
          Returns a view of the portion of this List between fromIndex, inclusive, and toIndex, exclusive.
 List AbstractList.subList(int fromIndex, int toIndex)
          Returns a view of the portion of this list between fromIndex, inclusive, and toIndex, exclusive.
 List List.subList(int start, int end)
          Answers a List of the specified portion of this List from the start index to one less than the end index.