| 
JavaTM 2 Platform Standard Ed. 5.0  | 
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ListIterator | |
|---|---|
| java.util | Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array). | 
| java.util.concurrent | Utility classes commonly useful in concurrent programming. | 
| Uses of ListIterator in java.util | 
|---|
| Methods in java.util that return ListIterator | |
|---|---|
 ListIterator<E> | 
List.listIterator()
Returns a list iterator of the elements in this list (in proper sequence).  | 
 ListIterator<E> | 
AbstractList.listIterator()
Returns an iterator of the elements in this list (in proper sequence).  | 
 ListIterator<E> | 
LinkedList.listIterator(int index)
Returns a list-iterator of the elements in this list (in proper sequence), starting at the specified position in the list.  | 
abstract  ListIterator<E> | 
AbstractSequentialList.listIterator(int index)
Returns a list iterator over the elements in this list (in proper sequence).  | 
 ListIterator<E> | 
List.listIterator(int index)
Returns a list iterator of the elements in this list (in proper sequence), starting at the specified position in this list.  | 
 ListIterator<E> | 
AbstractList.listIterator(int index)
Returns a list iterator of the elements in this list (in proper sequence), starting at the specified position in the list.  | 
| Uses of ListIterator in java.util.concurrent | 
|---|
| Methods in java.util.concurrent that return ListIterator | |
|---|---|
 ListIterator<E> | 
CopyOnWriteArrayList.listIterator()
Returns an Iterator of the elements in this List (in proper sequence).  | 
 ListIterator<E> | 
CopyOnWriteArrayList.listIterator(int index)
Returns a ListIterator of the elements in this List (in proper sequence), starting at the specified position in the List.  | 
  | 
JavaTM 2 Platform Standard Ed. 5.0  | 
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Copyright 2004 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.