public interface CharIterator
char
values.CharIteratorIterator
,
IteratorCharIterator
boolean hasNext()
true
iff I have more elements.
(In other words, returns true
iff
a subsequent call to next
will return
an element rather than throwing an exception.)true
iff I have more elementschar next()
NoSuchElementException
- if there is no next elementvoid remove()
returned
by me
(optional operation).UnsupportedOperationException
- if this operation is not supportedIllegalStateException
- if next()
has not yet been
called, or remove()
has already been called since
the last call to next()
.Copyright © 2002-2013 The Apache Software Foundation. All Rights Reserved.