public interface SequenceIterator<T extends Item<?>>
extends java.io.Closeable
The objects returned by the SequenceIterator will generally be either nodes
 (class NodeInfo), singleton values (class AtomicValue), or function items: these are represented
 collectively by the interface Item.
The interface to SequenceIterator is changed in Saxon 9.6 to drop support for the
 current() and position() methods. Internal iterators no longer need to maintain the values
 of the current item or the current position. This information is needed (in general) only
 for an iterator that acts as the current focus; that is, an iterator stored as the current
 iterator in an XPathContext. SequenceIterators than maintain the value of position()
 and last() are represented by the interface FocusIterator.
| Modifier and Type | Field and Description | 
|---|---|
static int | 
ATOMIZING
Property value: the iterator can deliver an atomized result. 
 | 
static int | 
GROUNDED
Property value: the iterator is "grounded". 
 | 
static int | 
LAST_POSITION_FINDER
Property value: the iterator knows the number of items that it will deliver. 
 | 
static int | 
LOOKAHEAD
Property value: the iterator knows whether there are more items still to come. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
default void | 
close()
Close the iterator. 
 | 
default void | 
forEachOrFail(ItemConsumer<T> consumer)
Process all the remaining items delivered by the SequenceIterator using a supplied consumer function. 
 | 
default int | 
getProperties()
Get properties of this iterator, as a bit-significant integer. 
 | 
default GroundedValue<T> | 
materialize()
Create a GroundedValue (a sequence materialized in memory) containing all the values delivered
 by this SequenceIterator. 
 | 
T | 
next()
Get the next item in the sequence. 
 | 
static final int GROUNDED
GroundedIterator, and (b) the
 implementation of the materialize() method must be efficient (in particular,
 it should not involve the creation of new objects)static final int LAST_POSITION_FINDER
LastPositionFinder,
 and (b) the implementation of the getLastPosition() method must be efficient (in particular,
 it should take constant time, rather than time proportional to the length of the sequence)static final int LOOKAHEAD
LookaheadIterator, and (b) the
 implementation of the hasNext() method must be efficient (more efficient than the client doing
 it)static final int ATOMIZING
T next() throws XPathException
XPathException - if an error occurs retrieving the next itemdefault void close()
For example, the iterator returned by the unparsed-text-lines() function has a close() method that causes the underlying input stream to be closed, whether or not the file has been read to completion.
Closing an iterator is important when the data is being "pushed" in another thread. Closing the iterator terminates that thread and means that it needs to do no additional work. Indeed, failing to close the iterator may cause the push thread to hang waiting for the buffer to be emptied.
close in interface java.lang.AutoCloseableclose in interface java.io.Closeabledefault int getProperties()
GROUNDED, LAST_POSITION_FINDER,
         and LOOKAHEAD. It is always
         acceptable to return the value zero, indicating that there are no known special properties.
         It is acceptable for the properties of the iterator to change depending on its state.default void forEachOrFail(ItemConsumer<T> consumer) throws XPathException
consumer - the supplied consumer functionXPathException - if either (a) an error occurs obtaining an item from the input sequence,
                        or (b) the consumer throws an exception.default GroundedValue<T> materialize() throws XPathException
It is implementation-dependant whether this method consumes the SequenceIterator. (More specifically,
 in the current implementation: if the iterator is backed by a GroundedValue, then that
 value is returned and the iterator is not consumed; otherwise, the iterator is consumed and the
 method returns the remaining items after the current position only).
XPathException - if reading the SequenceIterator throws an errorCopyright (c) 2004-2020 Saxonica Limited. All rights reserved.