| org.apache.commons.collections.primitives.IntListIterator
All known Subclasses: org.apache.commons.collections.primitives.adapters.ListIteratorIntListIterator, org.apache.commons.collections.primitives.decorators.ProxyIntListIterator,
Method Summary | |
void | add(int 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
IntListIterator.next , if any,
and immediately after the next element that would have been
returned by
IntListIterator.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. | int | 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
IntListIterator.next , or the number
of elements in my iteration if I have no next element. | int | 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
IntListIterator.previous , or
-1 if I have no previous element. | void | remove() Removes from my underlying collection the last
element returned by
IntListIterator.next or
IntListIterator.previous (optional operation). | void | set(int element) Replaces in my underlying collection the last
element returned by
IntListIterator.next or
IntListIterator.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
IntListIterator.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
IntListIterator.previous will return an element
rather than throwing an exception.
true iff I have more elements when traversed in the reverse direction |
next | int 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
IntListIterator.next , or the number
of elements in my iteration if I have no next element.
the index of the next element in me |
previous | int 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
IntListIterator.previous , or
-1 if I have no previous element.
the index of the previous element in me |
|
|