| Package | Description | 
|---|---|
| java.util | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
AbstractList<E>  | 
class  | 
ArrayList<E>  | 
class  | 
Stack<E>
The  
Stack class represents a last-in-first-out (LIFO) stack of objects. | 
class  | 
Vector<E>
The  
Vector class implements a growable array of objects. | 
| Modifier and Type | Method and Description | 
|---|---|
List<E> | 
Vector.subList(int fromIndex,
       int toIndex)
Returns a view of the portion of this List between fromIndex, inclusive, and toIndex, exclusive. 
 | 
List<E> | 
List.subList(int fromIndex,
       int toIndex)
Returns a view of the portion of this list between the specified fromIndex, inclusive,
 and toIndex, exclusive. 
 | 
List<E> | 
ArrayList.subList(int fromIndex,
       int toIndex)
Returns a view of the portion of this list between the specified  
fromIndex, inclusive,
 and toIndex, exclusive. | 
List<E> | 
AbstractList.subList(int fromIndex,
       int toIndex)
Returns a view of the portion of this list between the specified fromIndex, inclusive,
 and toIndex, exclusive. 
 |