previous | start | next

Iterator interface

interface Iterator<E>
{
  public boolean hasNext();
  public E next();
  public void remove();
}
   


previous | start | next