| com.uwyn.rife.pcj.CharIterator
CharIterator | public interface CharIterator (Code) | | This class represents iterators over collections of char values.
See Also: java.util.Iterator author: Søren Bak version: 1.0 2002/29/12 since: 1.0 |
Method Summary | |
boolean | hasNext() Indicates whether more char values can be returned by this
iterator. | char | next() Returns the next char value of this iterator. | void | remove() Removes the last char value returned from the underlying
collection. |
hasNext | boolean hasNext()(Code) | | Indicates whether more char values can be returned by this
iterator.
true if more char values can be returnedby this iterator; returns falseotherwise. See Also: CharIterator.next() |
next | char next()(Code) | | Returns the next char value of this iterator.
the next char value of this iterator. throws: NoSuchElementException - if no more elements are available from thisiterator. See Also: CharIterator.hasNext() |
|
|