public interface SequenceIterator
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 | Interface and Description |
---|---|
static class |
SequenceIterator.Property |
Modifier and Type | Method and Description |
---|---|
default void |
close()
Close the iterator.
|
default void |
forEachOrFail(ItemConsumer<? super Item> consumer)
Process all the remaining items delivered by the SequenceIterator using a supplied consumer function.
|
default java.util.EnumSet<SequenceIterator.Property> |
getProperties()
Get properties of this iterator.
|
default GroundedValue |
materialize()
Create a GroundedValue (a sequence materialized in memory) containing all the values delivered
by this SequenceIterator.
|
Item |
next()
Get the next item in the sequence.
|
Item 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.AutoCloseable
close
in interface java.io.Closeable
default java.util.EnumSet<SequenceIterator.Property> getProperties()
SequenceIterator.Property.GROUNDED
, SequenceIterator.Property.LAST_POSITION_FINDER
,
and SequenceIterator.Property.LOOKAHEAD
. It is always
acceptable to return the default value EnumSet.noneOf(Property.class)
,
indicating that there are no known special properties.
It is acceptable (though unusual) for the properties of the iterator to change depending
on its state.default void forEachOrFail(ItemConsumer<? super Item> 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 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.