|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sf.saxon.xpath.XPathExpressionImpl
public class XPathExpressionImpl
The JAXP XPathExpression interface represents a compiled XPath expression that can be repeatedly evaluated. This class is Saxon's implementation of that interface.
The class also includes some methods retained from Saxon's original XPath API. When these methods are used, the object contains the context node and other state, so it is not thread-safe.
Method Summary | |
---|---|
List |
evaluate()
Execute a prepared XPath expression, returning the results as a List. |
String |
evaluate(InputSource inputSource)
Evaluate the XPath expression against an input source to obtain a string result |
Object |
evaluate(InputSource inputSource,
QName qName)
Evaluate the XPath expression against an input source to obtain a result of a specified type |
String |
evaluate(Object node)
Evaluate the expression to return a string value |
Object |
evaluate(Object node,
QName qName)
JAXP 1.3 evaluate() method |
Object |
evaluateSingle()
Execute a prepared XPath expression, returning the first item in the result. |
Item |
evaluateSortKey(int n,
XPathContext c)
Callback for evaluating the sort keys. |
Configuration |
getConfiguration()
Get the Configuration under which this XPath expression was compiled |
Expression |
getInternalExpression()
Low-level method to get the internal Saxon expression object. |
SlotManager |
getStackFrameMap()
Get the stack frame map. |
SequenceIterator |
rawIterator()
Get a raw iterator over the results of the expression. |
void |
setContextNode(NodeInfo node)
Set the context node for evaluating the expression. |
void |
setSortKey(XPathExpressionImpl sortKey)
Define the sort order for the results of the expression. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public SlotManager getStackFrameMap()
public Configuration getConfiguration()
public void setSortKey(XPathExpressionImpl sortKey)
sortKey
- an XPathExpression, which will be applied to each item in the sequence;
the result of this expression determines the ordering of the list returned by the evaluate()
method. The sortKey can be null, to clear a previous sort key.public void setContextNode(NodeInfo node)
public List evaluate() throws XPathException
setContextNode(net.sf.saxon.om.NodeInfo)
.
evaluate(Object, javax.xml.namespace.QName)
with the second argument set to NODESET.
XPathException
public Object evaluateSingle() throws XPathException
setContextNode(net.sf.saxon.om.NodeInfo)
.
XPathException
public SequenceIterator rawIterator() throws XPathException
XPathException
public Object evaluate(Object node, QName qName) throws XPathExpressionException
evaluate
in interface XPathExpression
node
- The context node. This must use a representation of nodes that this implementation understands.
This may be a Saxon NodeInfo, or a node in one of the external object models supported, for example
DOM, DOM4J, JDOM, or XOM, provided the support module for that object model is loaded.
Contrary to the interface specification, Saxon does not supply an empty
document when the value is null. This is because Saxon supports multiple object models,
and it's unclear what kind of document node would be appropriate. Instead, Saxon uses
the node supplied to the setContextNode(net.sf.saxon.om.NodeInfo)
method if available, and if none
is available, executes the XPath expression with the context item undefined.
Saxon does not allow a NodeList to be supplied for this parameter. It's not clear what this would be intended to mean.
qName
- Indicates the type of result required. This must be one of the constants defined in
the JAXP XPathConstants
class.
Saxon will attempt to convert the actual result of the expression to the required type using the
XPath 1.0 conversion rules.
QName | Return Value |
BOOLEAN | The effective boolean value of the actual result, as a Java Boolean object |
STRING | The result of applying the string() function to the actual result, as a Java String object |
NUMBER | The result of applying the number() function to the actual result, as a Java Double object |
NODE | A single node, in the native data model supplied as input. If the expression returns more than one node, the first is returned. If the expression returns an empty sequence, null is returned. If the expression returns an atomic value, or if the first item in the result sequence is an atomic value, an exception is thrown. |
NODESET | This is interpreted as allowing any sequence, of nodes or atomic values. If the first argument is a wrapper around a DOM Node, then the result is returned as a DOM NodeList, and an exception is then thrown if the result sequence contains a value that is not a DOM Node. In all other cases the result is returned as a Java List object, unless it is empty, in which case null is returned. The contents of the list may be node objects (in the native data model supplied as input), or Java objects representing the XPath atomic values in the actual result: String for an xs:string, Double for a xs:double, Long for an xs:integer, and so on. (For safety, cast the values to a type such as xs:string within the XPath expression). |
XPathExpressionException
- if evaluation of the expression fails or if the
result cannot be converted to the requested type.public String evaluate(Object node) throws XPathExpressionException
evaluate
in interface XPathExpression
node
- the initial context node. This must be either an instance of NodeInfo or a node
recognized by a known external object model.
Contrary to the interface specification, Saxon does not supply an empty
document when the value is null. This is because Saxon supports multiple object models,
and it's unclear what kind of document node would be appropriate. Instead, Saxon uses
the node supplied to the setContextNode(net.sf.saxon.om.NodeInfo)
method if available, and if none
is available, executes the XPath expression with the context item undefined.
XPathExpressionException
- if evaluation failspublic Object evaluate(InputSource inputSource, QName qName) throws XPathExpressionException
evaluate
in interface XPathExpression
inputSource
- The input source document against which the expression is evaluated.
(Note that there is no caching. This will be parsed, and the parsed result will be discarded.)
If the supplied value is null then (contrary to the JAXP specifications), the XPath expression
is evaluated with the context item undefined.qName
- The type required, identified by a constant in XPathConstants
evaluate(Object, javax.xml.namespace.QName)
XPathExpressionException
public String evaluate(InputSource inputSource) throws XPathExpressionException
evaluate
in interface XPathExpression
inputSource
- The input source document against which the expression is evaluated.
(Note that there is no caching. This will be parsed, and the parsed result will be discarded.)
XPathExpressionException
- in the event of an XPath dynamic error
NullPointerException
- If inputSource
is null
.public Item evaluateSortKey(int n, XPathContext c) throws XPathException
evaluateSortKey
in interface SortKeyEvaluator
XPathException
public Expression getInternalExpression()
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |