net.sf.saxon.om
public class NodeListIterator extends ListIterator implements AxisIterator
Constructor Summary | |
---|---|
NodeListIterator(List list)
Create a NodeListIterator. |
Method Summary | |
---|---|
Value | atomize()
Return the atomized value of the current node.
|
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: list the list, all of whose members must be instances of NodeInfo (this is not checked)
Returns: the atomized value.
Throws: NullPointerException if there is no current node
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