03/05 Lecture Material
java.util.ListIterator
- boolean hasNext()
- Object next()
- void remove()
- boolean hasPrevious()
- Object previous()
- int nextIndex()
- int previousIndex()
- void add(Object newEntry)
- void set(Object newEntry)
Other Classes
- java.util.ArrayList
- java.util.LinkedList
Class Code