chtdecoder.datastructures
Interface CHTCodeIterator


public interface CHTCodeIterator

An iterator for CHTCode objects.

Version:
1.1, 09/14/04
Author:
John David Ratliff

Method Summary
 boolean hasMore()
          Queries if this iterator has more elements.
 CHTCode next()
          Gets the next CHTCode from this iterator.
 

Method Detail

hasMore

public boolean hasMore()
Queries if this iterator has more elements.

Returns:
true if more elements remain; false otherwise.

next

public CHTCode next()
             throws java.util.NoSuchElementException
Gets the next CHTCode from this iterator.

Returns:
The next CHTCode in this iterator.
Throws:
java.util.NoSuchElementException - if no more elements are in this iterator.