GNU Trove

gnu.trove.iterator
Interface TCharIterator

All Superinterfaces:
TIterator

public interface TCharIterator
extends TIterator

Iterator for char collections.


Method Summary
 char next()
          Advances the iterator to the next element in the underlying collection and returns it.
 
Methods inherited from interface gnu.trove.iterator.TIterator
hasNext, remove
 

Method Detail

next

char next()
Advances the iterator to the next element in the underlying collection and returns it.

Returns:
the next char in the collection
Throws:
NoSuchElementException - if the iterator is already exhausted

GNU Trove