|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IntListIterator
Integer list iterator.
Method Summary | |
---|---|
boolean |
hasNext()
Check if there is a next element. |
boolean |
hasPrevious()
Check if there is a previous element. |
void |
moveToEnd()
Move the iterator to the end of the underlying index. |
void |
moveToStart()
Move the iterator to the start of the underlying index. |
int |
next()
Return the next feature structure and increment the iterator. |
int |
previous()
Return the previous feature structure and decrement the iterator. |
Method Detail |
---|
boolean hasNext()
true
iff there is a next element.int next() throws java.util.NoSuchElementException
java.util.NoSuchElementException
- If no next element exists, i.e., when the iterator points at the last position in
the index.boolean hasPrevious()
true
iff there is a previous element.int previous()
java.util.NoSuchElementException
- If no previous element exists, i.e., when the iterator points at the first
position in the index.void moveToStart()
void moveToEnd()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |