| org.apache.commons.collections.primitives.CharListIterator
All known Subclasses: org.apache.commons.collections.primitives.adapters.ListIteratorCharListIterator, org.apache.commons.collections.primitives.decorators.ProxyCharListIterator,
Method Summary | |
void | add(char element) Inserts the specified element into my underlying collection
(optional operation).
The element is inserted immediately before the next element
that would have been returned by
CharListIterator.next , if any,
and immediately after the next element that would have been
returned by
CharListIterator.previous , if any.
The new element is inserted immediately before the implied
cursor. | boolean | hasNext() Returns true iff I have more elements
when traversed in the forward direction. | boolean | hasPrevious() Returns true iff I have more elements
when traversed in the reverse direction. | char | next() Returns the next element in me when traversed in the
forward direction. | int | nextIndex() Returns the index of the element that would be returned
by a subsequent call to
CharListIterator.next , or the number
of elements in my iteration if I have no next element. | char | previous() Returns the next element in me when traversed in the
reverse direction. | int | previousIndex() Returns the index of the element that would be returned
by a subsequent call to
CharListIterator.previous , or
-1 if I have no previous element. | void | remove() Removes from my underlying collection the last
element returned by
CharListIterator.next or
CharListIterator.previous (optional operation). | void | set(char element) Replaces in my underlying collection the last
element returned by
CharListIterator.next or
CharListIterator.previous with the specified value (optional operation). |
hasNext | boolean hasNext()(Code) | | Returns true iff I have more elements
when traversed in the forward direction.
(In other words, returns true iff
a call to
CharListIterator.next will return an element
rather than throwing an exception.
true iff I have more elements when traversed in the forward direction |
hasPrevious | boolean hasPrevious()(Code) | | Returns true iff I have more elements
when traversed in the reverse direction.
(In other words, returns true iff
a call to
CharListIterator.previous will return an element
rather than throwing an exception.
true iff I have more elements when traversed in the reverse direction |
next | char next()(Code) | | Returns the next element in me when traversed in the
forward direction.
the next element in me throws: NoSuchElementException - if there is no next element |
nextIndex | int nextIndex()(Code) | | Returns the index of the element that would be returned
by a subsequent call to
CharListIterator.next , or the number
of elements in my iteration if I have no next element.
the index of the next element in me |
previous | char previous()(Code) | | Returns the next element in me when traversed in the
reverse direction.
the previous element in me throws: NoSuchElementException - if there is no previous element |
previousIndex | int previousIndex()(Code) | | Returns the index of the element that would be returned
by a subsequent call to
CharListIterator.previous , or
-1 if I have no previous element.
the index of the previous element in me |
|
|