public abstract class CharIterator
extends java.lang.Object
Constructor and Description |
---|
CharIterator() |
public abstract boolean hasNext()
true
if the iteration has more values. (In other words, returns true
if next()
would return a value rather than throwing an exception.)public abstract char next()
NoSuchElementException
- if the iteration has no more values