net.sf.saxon.om
public class ReverseNodeArrayIterator extends ReverseArrayIterator implements AxisIterator
Constructor Summary | |
---|---|
ReverseNodeArrayIterator(Item[] items, int start, int end)
Create a reverse iterator over a slice of an array |
Method Summary | |
---|---|
Value | atomize()
Return the atomized value of the current node.
|
SequenceIterator | getAnother()
Get another iterator over the same items |
SequenceIterator | getReverseIterator()
Get an iterator that processes the same items in reverse order.
|
CharSequence | getStringValue()
Return the string value of the current node.
|
AxisIterator | iterateAxis(byte axis, NodeTest test)
Return an iterator over an axis, starting at the current node.
|
boolean | moveNext()
Move to the next node, without returning it. |
Parameters: items The array of items start The first item in the array to be be used (this will be the last one in the resulting iteration). Zero-based. end The item after the last one in the array to be used (this will be the first one to be returned by the iterator). Zero-based.
Returns: the atomized value.
Throws: NullPointerException if there is no current node
Returns: another iterator over the same items, positioned at the start of the sequence
Returns: a new ArrayIterator
Returns: the string value, as an instance of CharSequence.
Throws: NullPointerException if there is no current node
Parameters: axis the axis to iterate over, using a constant such as CHILD test a predicate to apply to the nodes before returning them.
Throws: NullPointerException if there is no current node