Package net.sf.saxon.om
Class IteratorWrapper
java.lang.Object
net.sf.saxon.om.IteratorWrapper
- All Implemented Interfaces:
Closeable
,AutoCloseable
,SequenceIterator
Class IteratorWrapper - provides a SequenceIterator over a Java Iterator.
-
Constructor Summary
ConstructorsConstructorDescriptionIteratorWrapper
(Iterator<? extends Item> iterator) Create a IteratorWrapper backed by an iterator -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.sf.saxon.om.SequenceIterator
close
-
Constructor Details
-
IteratorWrapper
Create a IteratorWrapper backed by an iterator- Parameters:
iterator
- the iterator that delivers the items in the sequence
-
-
Method Details
-
next
Get the next item in the Iterator- Specified by:
next
in interfaceSequenceIterator
- Returns:
- the next item in the iterator, or null if there are no more items. Once a call on next() has returned null, no further calls should be made.
-