at.jku.ssw
Class Iterator

java.lang.Object
  extended by at.jku.ssw.Iterator
Direct Known Subclasses:
LinkedListIterator

public abstract class Iterator
extends java.lang.Object

An iterator over a character collection.


Constructor Summary
Iterator()
           
 
Method Summary
abstract  boolean hasNext()
          Returns true if the iteration has more values.
abstract  char next()
          Returns the next value in the iteration.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Iterator

public Iterator()
Method Detail

hasNext

public abstract boolean hasNext()
Returns true if the iteration has more values.


next

public abstract char next()
Returns the next value in the iteration.