public class ItemMappingIterator extends java.lang.Object implements SequenceIterator, LookaheadIterator, LastPositionFinder
This is a specialization of the more general MappingIterator class, for use in cases where a single input item never maps to a sequence of more than one output item.
The Java implementation accepts a lambda expression as the mapping function (because it is a functional interface, even though not declared as such). To achieve the same effect on C# we add extra constructors that explicitly accept a lambda expression, by virtue of the fact that the expected type is a functional interface (which translates to a C# delegate)
| Constructor and Description |
|---|
ItemMappingIterator(SequenceIterator base,
ItemMappingFunction action)
Construct an ItemMappingIterator that will apply a specified ItemMappingFunction to
each Item returned by the base iterator.
|
ItemMappingIterator(SequenceIterator base,
ItemMappingFunction action,
boolean oneToOne)
Construct an ItemMappingIterator that will apply a specified ItemMappingFunction to
each Item returned by the base iterator.
|
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Close the iterator.
|
void |
discharge()
Calling this method instructs the iterator to release any resources it holds, while still
remaining able to deliver the remaining items in the sequence.
|
static ItemMappingIterator |
filter(SequenceIterator base,
ItemFilter.Lambda filterExpression)
Factory method designed for use when the mapping function is designed to filter the input nodes
Example of usage:
ItemMappingIterator.filter(base, item -> item.hasChildNodes()) |
protected SequenceIterator |
getBaseIterator()
Get the base (input) iterator
|
int |
getLength()
Get the last position (that is, the number of items in the sequence).
|
protected ItemMappingFunction |
getMappingFunction()
Get the mapping function (the function applied to each item in the input sequence
|
boolean |
hasNext()
Determine whether there are more items to come.
|
boolean |
isOneToOne()
Ask whether this ItemMappingIterator is one-to-one: that is, for every input item, there is
always exactly one output item.
|
static ItemMappingIterator |
map(SequenceIterator base,
ItemMapper.Lambda mappingExpression)
Factory method designed for use when the mapping function is a lambda expression
Example of usage:
ItemMappingIterator.map(base, item -> item.getParentNode()) |
Item |
next()
Get the next item in the sequence.
|
void |
setOneToOne(boolean oneToOne)
Say whether this ItemMappingIterator is one-to-one: that is, for every input item, there is
always exactly one output item.
|
boolean |
supportsGetLength()
Ask whether this iterator supports use of the
LastPositionFinder.getLength() method. |
boolean |
supportsHasNext()
Ask whether the hasNext() method can be called.
|
public ItemMappingIterator(SequenceIterator base, ItemMappingFunction action)
base - the base iteratoraction - the mapping function to be applied.public ItemMappingIterator(SequenceIterator base, ItemMappingFunction action, boolean oneToOne)
base - the base iteratoraction - the mapping function to be appliedoneToOne - true if this iterator is one-to-onepublic static ItemMappingIterator map(SequenceIterator base, ItemMapper.Lambda mappingExpression)
ItemMappingIterator.map(base, item -> item.getParentNode())base - iterator over the base sequencemappingExpression - function to be applied to items in the base sequencepublic static ItemMappingIterator filter(SequenceIterator base, ItemFilter.Lambda filterExpression)
ItemMappingIterator.filter(base, item -> item.hasChildNodes())base - iterator over the base sequencefilterExpression - predicate to be applied to items in the base sequencepublic void setOneToOne(boolean oneToOne)
oneToOne - true if this iterator is one-to-onepublic boolean isOneToOne()
protected SequenceIterator getBaseIterator()
protected ItemMappingFunction getMappingFunction()
public boolean supportsHasNext()
LookaheadIteratorsupportsHasNext in interface LookaheadIteratorLookaheadIterator.hasNext() method is availablepublic boolean hasNext()
LookaheadIteratorThis method must not be called unless the result of LookaheadIterator.supportsHasNext()
is true.
hasNext in interface LookaheadIteratorpublic Item next()
SequenceIteratornext in interface SequenceIteratorpublic void close()
SequenceIteratorFor 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.
Closing an iterator is not necessary if the iterator is read to completion: if a call
on SequenceIterator.next() returns null, the iterator will be closed automatically. An explicit
call on SequenceIterator.close() is needed only when iteration is abandoned prematurely.
close in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in interface SequenceIteratorpublic void discharge()
SequenceIteratorSequenceIterator.close() will be called when no more items are needed.discharge in interface SequenceIteratorpublic boolean supportsGetLength()
LastPositionFinderLastPositionFinder.getLength() method. This
method should always be called before calling LastPositionFinder.getLength(), because an iterator
that implements this interface may support use of LastPositionFinder.getLength() in some situations
and not in otherssupportsGetLength in interface LastPositionFinderLastPositionFinder.getLength() method can be called to determine the length
of the underlying sequence.public int getLength()
LastPositionFinderLastPositionFinder.supportsGetLength() has been called
and has returned true.getLength in interface LastPositionFinderCopyright (c) 2004-2022 Saxonica Limited. All rights reserved.