Interface XPath
- All Known Implementing Classes:
XPathImpl
public interface XPath
XPath provides access to the XPath evaluation environment and expressions.
| Evaluation of XPath Expressions. | |
|---|---|
| context | If a request is made to evaluate the expression in the absence of a context item, an empty document node will be used for the context. For the purposes of evaluating XPath expressions, a DocumentFragment is treated like a Document node. |
| variables |
If the expression contains a variable reference, its value will be found through the XPathVariableResolver
set with setXPathVariableResolver(XPathVariableResolver resolver).
An XPathExpressionException is raised if the variable resolver is undefined or
the resolver returns null for the variable.
The value of a variable must be immutable through the course of any single evaluation.
|
| functions |
If the expression contains a function reference, the function will be found through the XPathFunctionResolver
set with setXPathFunctionResolver(XPathFunctionResolver resolver).
An XPathExpressionException is raised if the function resolver is undefined or
the function resolver returns null for the function.
|
| QNames |
QNames in the expression are resolved against the XPath namespace context
set with setNamespaceContext(NamespaceContext nsContext).
|
| result |
This result of evaluating an expression is converted to an instance of the desired return type.
Valid return types are defined in XPathConstants.
Conversion to the return type follows XPath conversion rules.
|
- Since:
- 1.5
- Version:
- $Revision: 569998 $, $Date: 2007-08-26 21:40:02 -0700 (Sun, 26 Aug 2007) $
- Author:
- Norman Walsh, Jeff Suttor
- See Also:
- XML Path Language (XPath) Version 1.0
-
Method Summary
Modifier and Type Method Description XPathExpressioncompile(String expression)Compile an XPath expression for later evaluation.Stringevaluate(String expression, Object item)Evaluate an XPath expression in the specified context and return the result as aString.Objectevaluate(String expression, Object item, QName returnType)Evaluate anXPathexpression in the specified context and return the result as the specified type.Stringevaluate(String expression, InputSource source)Evaluate an XPath expression in the context of the specifiedInputSourceand return the result as aString.Objectevaluate(String expression, InputSource source, QName returnType)Evaluate an XPath expression in the context of the specifiedInputSourceand return the result as the specified type.NamespaceContextgetNamespaceContext()Return the current namespace context.XPathFunctionResolvergetXPathFunctionResolver()Return the current function resolver.XPathVariableResolvergetXPathVariableResolver()Return the current variable resolver.voidreset()Reset thisXPathto its original configuration.voidsetNamespaceContext(NamespaceContext nsContext)Establish a namespace context.voidsetXPathFunctionResolver(XPathFunctionResolver resolver)Establish a function resolver.voidsetXPathVariableResolver(XPathVariableResolver resolver)Establish a variable resolver.
-
Method Details
-
reset
void reset()Reset this
XPathto its original configuration.XPathis reset to the same state as when it was created withXPathFactory.newXPath().reset()is designed to allow the reuse of existingXPaths thus saving resources associated with the creation of newXPaths.The reset
XPathis not guaranteed to have the sameXPathFunctionResolver,XPathVariableResolverorNamespaceContextObjects, e.g.Object.equals(Object obj). It is guaranteed to have a functionally equalXPathFunctionResolver,XPathVariableResolverandNamespaceContext. -
setXPathVariableResolver
Establish a variable resolver.
A
NullPointerExceptionis thrown ifresolverisnull.- Parameters:
resolver- Variable resolver.- Throws:
NullPointerException- Ifresolverisnull.
-
getXPathVariableResolver
XPathVariableResolver getXPathVariableResolver()Return the current variable resolver.
nullis returned in no variable resolver is in effect.- Returns:
- Current variable resolver.
-
setXPathFunctionResolver
Establish a function resolver.
A
NullPointerExceptionis thrown ifresolverisnull.- Parameters:
resolver- XPath function resolver.- Throws:
NullPointerException- Ifresolverisnull.
-
getXPathFunctionResolver
XPathFunctionResolver getXPathFunctionResolver()Return the current function resolver.
nullis returned in no function resolver is in effect.- Returns:
- Current function resolver.
-
setNamespaceContext
Establish a namespace context.
A
NullPointerExceptionis thrown ifnsContextisnull.- Parameters:
nsContext- Namespace context to use.- Throws:
NullPointerException- IfnsContextisnull.
-
getNamespaceContext
NamespaceContext getNamespaceContext()Return the current namespace context.
nullis returned in no namespace context is in effect.- Returns:
- Current Namespace context.
-
compile
Compile an XPath expression for later evaluation.
If
expressioncontains anyXPathFunctions, they must be available via theXPathFunctionResolver. AnXPathExpressionExceptionwill be thrown if theXPathFunctioncannot be resolved with theXPathFunctionResolver.If
expressionisnull, aNullPointerExceptionis thrown.- Parameters:
expression- The XPath expression.- Returns:
- Compiled XPath expression.
- Throws:
XPathExpressionException- Ifexpressioncannot be compiled.NullPointerException- Ifexpressionisnull.
-
evaluate
Evaluate an
XPathexpression in the specified context and return the result as the specified type.See Evaluation of XPath Expressions for context item evaluation, variable, function and
QNameresolution and return type conversion.If
returnTypeis not one of the types defined inXPathConstants(NUMBER,STRING,BOOLEAN,NODEorNODESET) then anIllegalArgumentExceptionis thrown.If a
nullvalue is provided foritem, an empty document will be used for the context. IfexpressionorreturnTypeisnull, then aNullPointerExceptionis thrown.- Parameters:
expression- The XPath expression.item- The starting context (node or node list, for example).returnType- The desired return type.- Returns:
- Result of evaluating an XPath expression as an
ObjectofreturnType. - Throws:
XPathExpressionException- Ifexpressioncannot be evaluated.IllegalArgumentException- IfreturnTypeis not one of the types defined inXPathConstants.NullPointerException- IfexpressionorreturnTypeisnull.
-
evaluate
Evaluate an XPath expression in the specified context and return the result as a
String.This method calls
evaluate(String expression, Object item, QName returnType)with areturnTypeofXPathConstants.STRING.See Evaluation of XPath Expressions for context item evaluation, variable, function and QName resolution and return type conversion.
If a
nullvalue is provided foritem, an empty document will be used for the context. Ifexpressionisnull, then aNullPointerExceptionis thrown.- Parameters:
expression- The XPath expression.item- The starting context (node or node list, for example).- Returns:
- The
Stringthat is the result of evaluating the expression and converting the result to aString. - Throws:
XPathExpressionException- Ifexpressioncannot be evaluated.NullPointerException- Ifexpressionisnull.
-
evaluate
Object evaluate(String expression, InputSource source, QName returnType) throws XPathExpressionExceptionEvaluate an XPath expression in the context of the specified
InputSourceand return the result as the specified type.This method builds a data model for the
InputSourceand callsevaluate(String expression, Object item, QName returnType)on the resulting document object.See Evaluation of XPath Expressions for context item evaluation, variable, function and QName resolution and return type conversion.
If
returnTypeis not one of the types defined inXPathConstants, then anIllegalArgumentExceptionis thrown.If
expression,sourceorreturnTypeisnull, then aNullPointerExceptionis thrown.- Parameters:
expression- The XPath expression.source- The input source of the document to evaluate over.returnType- The desired return type.- Returns:
- The
Objectthat encapsulates the result of evaluating the expression. - Throws:
XPathExpressionException- If expression cannot be evaluated.IllegalArgumentException- IfreturnTypeis not one of the types defined inXPathConstants.NullPointerException- Ifexpression,sourceorreturnTypeisnull.
-
evaluate
Evaluate an XPath expression in the context of the specified
InputSourceand return the result as aString.This method calls
evaluate(String expression, InputSource source, QName returnType)with areturnTypeofXPathConstants.STRING.See Evaluation of XPath Expressions for context item evaluation, variable, function and QName resolution and return type conversion.
If
expressionorsourceisnull, then aNullPointerExceptionis thrown.- Parameters:
expression- The XPath expression.source- TheInputSourceof the document to evaluate over.- Returns:
- The
Stringthat is the result of evaluating the expression and converting the result to aString. - Throws:
XPathExpressionException- If expression cannot be evaluated.NullPointerException- Ifexpressionorsourceisnull.
-