net.sf.saxon.sort
Interface IntIterator
- EmptyIntIterator, NamespaceCodeIterator, TerminatedIntIterator
public interface IntIterator
An iterator over a sequence of unboxed int values
boolean | hasNext() - Test whether there are any more integers in the sequence
|
int | next() - Return the next integer in the sequence.
|
hasNext
public boolean hasNext()
Test whether there are any more integers in the sequence
- true if there are more integers to come
next
public int next()
Return the next integer in the sequence. The result is undefined unless hasNext() has been called
and has returned true.
- the next integer in the sequence