Site hosted by Angelfire.com: Build your free website today!
 

Iterators

An Iterator is a sequence of objects that can be accessed one at a time.

public interface Iterator {
    boolean hasNext();
    Object next();
    void remove();    // Optional
}