public interface XPathResult
The 
XPathResult interface represents the result of the
 evaluation of an XPath 1.0 expression within the context of a particular
 node. Since evaluation of an XPath expression can result in various
 result types, this object makes it possible to discover and manipulate
 the type and value of the result.
 See also the Document Object Model (DOM) Level 3 XPath Specification.
- 
Field SummaryFields Modifier and Type Field Description static shortANY_TYPEThis code does not represent a specific type.static shortANY_UNORDERED_NODE_TYPEThe result is a node set as defined by and will be accessed as a single node, which may benullif the node set is empty.static shortBOOLEAN_TYPEThe result is a boolean as defined by .static shortFIRST_ORDERED_NODE_TYPEThe result is a node set as defined by and will be accessed as a single node, which may benullif the node set is empty.static shortNUMBER_TYPEThe result is a number as defined by .static shortORDERED_NODE_ITERATOR_TYPEThe result is a node set as defined by that will be accessed iteratively, which will produce document-ordered nodes.static shortORDERED_NODE_SNAPSHOT_TYPEThe result is a node set as defined by that will be accessed as a snapshot list of nodes that will be in original document order.static shortSTRING_TYPEThe result is a string as defined by .static shortUNORDERED_NODE_ITERATOR_TYPEThe result is a node set as defined by that will be accessed iteratively, which may not produce nodes in a particular order.static shortUNORDERED_NODE_SNAPSHOT_TYPEThe result is a node set as defined by that will be accessed as a snapshot list of nodes that may not be in a particular order.
- 
Method SummaryModifier and Type Method Description booleangetBooleanValue()The value of this boolean result.booleangetInvalidIteratorState()Signifies that the iterator has become invalid.doublegetNumberValue()The value of this number result.shortgetResultType()A code representing the type of this result, as defined by the type constants.NodegetSingleNodeValue()The value of this single node result, which may benull.intgetSnapshotLength()The number of nodes in the result snapshot.StringgetStringValue()The value of this string result.NodeiterateNext()Iterates and returns the next node from the node set ornullif there are no more nodes.NodesnapshotItem(int index)Returns theindexth item in the snapshot collection.
- 
Field Details- 
ANY_TYPEstatic final short ANY_TYPEThis code does not represent a specific type. An evaluation of an XPath expression will never produce this type. If this type is requested, then the evaluation returns whatever type naturally results from evaluation of the expression.
 If the natural result is a node set whenANY_TYPEwas requested, thenUNORDERED_NODE_ITERATOR_TYPEis always the resulting type. Any other representation of a node set must be explicitly requested.- See Also:
- Constant Field Values
 
- 
NUMBER_TYPEstatic final short NUMBER_TYPEThe result is a number as defined by . Document modification does not invalidate the number, but may mean that reevaluation would not yield the same number.- See Also:
- Constant Field Values
 
- 
STRING_TYPEstatic final short STRING_TYPEThe result is a string as defined by . Document modification does not invalidate the string, but may mean that the string no longer corresponds to the current document.- See Also:
- Constant Field Values
 
- 
BOOLEAN_TYPEstatic final short BOOLEAN_TYPEThe result is a boolean as defined by . Document modification does not invalidate the boolean, but may mean that reevaluation would not yield the same boolean.- See Also:
- Constant Field Values
 
- 
UNORDERED_NODE_ITERATOR_TYPEstatic final short UNORDERED_NODE_ITERATOR_TYPEThe result is a node set as defined by that will be accessed iteratively, which may not produce nodes in a particular order. Document modification invalidates the iteration.
 This is the default type returned if the result is a node set andANY_TYPEis requested.- See Also:
- Constant Field Values
 
- 
ORDERED_NODE_ITERATOR_TYPEstatic final short ORDERED_NODE_ITERATOR_TYPEThe result is a node set as defined by that will be accessed iteratively, which will produce document-ordered nodes. Document modification invalidates the iteration.- See Also:
- Constant Field Values
 
- 
UNORDERED_NODE_SNAPSHOT_TYPEstatic final short UNORDERED_NODE_SNAPSHOT_TYPEThe result is a node set as defined by that will be accessed as a snapshot list of nodes that may not be in a particular order. Document modification does not invalidate the snapshot but may mean that reevaluation would not yield the same snapshot and nodes in the snapshot may have been altered, moved, or removed from the document.- See Also:
- Constant Field Values
 
- 
ORDERED_NODE_SNAPSHOT_TYPEstatic final short ORDERED_NODE_SNAPSHOT_TYPEThe result is a node set as defined by that will be accessed as a snapshot list of nodes that will be in original document order. Document modification does not invalidate the snapshot but may mean that reevaluation would not yield the same snapshot and nodes in the snapshot may have been altered, moved, or removed from the document.- See Also:
- Constant Field Values
 
- 
ANY_UNORDERED_NODE_TYPEstatic final short ANY_UNORDERED_NODE_TYPEThe result is a node set as defined by and will be accessed as a single node, which may benullif the node set is empty. Document modification does not invalidate the node, but may mean that the result node no longer corresponds to the current document. This is a convenience that permits optimization since the implementation can stop once any node in the in the resulting set has been found.
 If there are more than one node in the actual result, the single node returned might not be the first in document order.- See Also:
- Constant Field Values
 
- 
FIRST_ORDERED_NODE_TYPEstatic final short FIRST_ORDERED_NODE_TYPEThe result is a node set as defined by and will be accessed as a single node, which may benullif the node set is empty. Document modification does not invalidate the node, but may mean that the result node no longer corresponds to the current document. This is a convenience that permits optimization since the implementation can stop once the first node in document order of the resulting set has been found.
 If there are more than one node in the actual result, the single node returned will be the first in document order.- See Also:
- Constant Field Values
 
 
- 
- 
Method Details- 
getResultTypeshort getResultType()A code representing the type of this result, as defined by the type constants.
- 
getNumberValueThe value of this number result. If the native double type of the DOM binding does not directly support the exact IEEE 754 result of the XPath expression, then it is up to the definition of the binding binding to specify how the XPath number is converted to the native binding number.- Throws:
- XPathException- TYPE_ERR: raised if- resultTypeis not- NUMBER_TYPE.
 
- 
getStringValueThe value of this string result.- Throws:
- XPathException- TYPE_ERR: raised if- resultTypeis not- STRING_TYPE.
 
- 
getBooleanValueThe value of this boolean result.- Throws:
- XPathException- TYPE_ERR: raised if- resultTypeis not- BOOLEAN_TYPE.
 
- 
getSingleNodeValueThe value of this single node result, which may benull.- Throws:
- XPathException- TYPE_ERR: raised if- resultTypeis not- ANY_UNORDERED_NODE_TYPEor- FIRST_ORDERED_NODE_TYPE.
 
- 
getInvalidIteratorStateboolean getInvalidIteratorState()Signifies that the iterator has become invalid. True ifresultTypeisUNORDERED_NODE_ITERATOR_TYPEorORDERED_NODE_ITERATOR_TYPEand the document has been modified since this result was returned.
- 
getSnapshotLengthThe number of nodes in the result snapshot. Valid values for snapshotItem indices are0tosnapshotLength-1inclusive.- Throws:
- XPathException- TYPE_ERR: raised if- resultTypeis not- UNORDERED_NODE_SNAPSHOT_TYPEor- ORDERED_NODE_SNAPSHOT_TYPE.
 
- 
iterateNextIterates and returns the next node from the node set ornullif there are no more nodes.- Returns:
- Returns the next node.
- Throws:
- XPathException- TYPE_ERR: raised if- resultTypeis not- UNORDERED_NODE_ITERATOR_TYPEor- ORDERED_NODE_ITERATOR_TYPE.
- DOMException- INVALID_STATE_ERR: The document has been mutated since the result was returned.
 
- 
snapshotItemReturns theindexth item in the snapshot collection. Ifindexis greater than or equal to the number of nodes in the list, this method returnsnull. Unlike the iterator result, the snapshot does not become invalid, but may not correspond to the current document if it is mutated.- Parameters:
- index- Index into the snapshot collection.
- Returns:
- The node at the indexth position in theNodeList, ornullif that is not a valid index.
- Throws:
- XPathException- TYPE_ERR: raised if- resultTypeis not- UNORDERED_NODE_SNAPSHOT_TYPEor- ORDERED_NODE_SNAPSHOT_TYPE.
 
 
-