T
- The generic type of the results of the XPath query after being
processed by the JDOM Filter<T>
public interface XPathExpression<T>
extends java.lang.Cloneable
Once an XPathExpression is created, the values associated with variable names can be changed. But new variables may not be added.
XPathExpression is not thread-safe. XPath libraries allow variable values to change between calls to their query routines, but require that the variable value is constant for the duration of any particular evaluation. It is easier to simply have separate XPathExpression instances in each thread than it is to manage the synchronization of a single instance. XPathExpression thus supports Cloneable to easily create another XPathExpression instance. It is the responsibility of the JDOM caller to ensure appropriate synchronisation of the XPathExpression if it is accessed from multiple threads.
Modifier and Type | Method and Description |
---|---|
XPathExpression<T> |
clone()
Create a new instance of this XPathExpression that duplicates this
instance.
|
XPathDiagnostic<T> |
diagnose(java.lang.Object context,
boolean firstonly)
Evaluate the XPath query against the supplied context, but return
additional data which may be useful for diagnosing problems with XPath
queries.
|
java.util.List<T> |
evaluate(java.lang.Object context)
Process the compiled XPathExpression against the specified context.
|
T |
evaluateFirst(java.lang.Object context)
Return the first value in the XPath query result set type-cast to the
return type of this XPathExpression.
|
java.lang.String |
getExpression()
Get the XPath expression
|
Filter<T> |
getFilter()
Get the
Filter<T> used to coerce the raw XPath results in to
the correct Generic type. |
Namespace |
getNamespace(java.lang.String prefix)
Get the Namespace associated with a given prefix.
|
Namespace[] |
getNamespaces()
Get the Namespaces that were used to compile this XPathExpression.
|
java.lang.Object |
getVariable(java.lang.String qname)
Get the variable value associated to the given variable qname.
|
java.lang.Object |
getVariable(java.lang.String localname,
Namespace uri)
Get the variable value associated to the given variable name.
|
java.lang.Object |
setVariable(java.lang.String localname,
Namespace uri,
java.lang.Object value)
Change the defined value for a variable to some new value.
|
java.lang.Object |
setVariable(java.lang.String qname,
java.lang.Object value)
Change the defined value for a variable to some new value.
|
XPathExpression<T> clone()
The 'cloned' instance will have the same XPath query, namespace declarations, and variables. Changing a value associated with a variable on the cloned instance will not change this instance's values, and it is safe to run the evaluate methods on the cloned copy at the same time as this copy.
java.lang.String getExpression()
Namespace getNamespace(java.lang.String prefix)
prefix
- The prefix to select the Namespace URI for.java.lang.IllegalArgumentException
- if that prefix is not defined.Namespace[] getNamespaces()
java.lang.Object setVariable(java.lang.String localname, Namespace uri, java.lang.Object value)
The value of the variable may be null. Some XPath libraries support a null value, and if the library that this expression is for does not support a null value it should be translated to something meaningful for that library, typically the empty string.
localname
- The variable localname to change.uri
- the Namespace in which the variable name is declared.value
- The new value to set.java.lang.NullPointerException
- if name or uri is nulljava.lang.IllegalArgumentException
- if name is not already a variable.java.lang.Object setVariable(java.lang.String qname, java.lang.Object value)
The value of the variable may be null. Some XPath libraries support a null value, and if the library that this expression is for does not support a null value it should be translated to something meaningful for that library, typically the empty string.
qname must consist of an optional namespace prefix and colon, followed
by a mandatory variable localname. If the prefix is not specified, then
the Namespace is assumed to be the Namespace.NO_NAMESPACE
. If
the prefix is specified, it must match with one of the declared
Namespaces for this XPathExpression
qname
- The variable qname to change.value
- The new value to set.java.lang.NullPointerException
- if qname is nulljava.lang.IllegalArgumentException
- if name is not already a variable.java.lang.Object getVariable(java.lang.String localname, Namespace uri)
localname
- the variable localname to retrieve the value for.uri
- the Namespace in which the variable name was declared.java.lang.NullPointerException
- if name or uri is nulljava.lang.IllegalArgumentException
- if that variable name is not defined.java.lang.Object getVariable(java.lang.String qname)
qname must consist of an optional namespace prefix and colon, followed
by a mandatory variable localname. If the prefix is not specified, then
the Namespace is assumed to be the Namespace.NO_NAMESPACE
. If
the prefix is specified, it must match with one of the declared
Namespaces for this XPathExpression
qname
- the variable qname to retrieve the value for.java.lang.NullPointerException
- if qname is nulljava.lang.IllegalArgumentException
- if that variable name is not defined.Filter<T> getFilter()
Filter<T>
used to coerce the raw XPath results in to
the correct Generic type.Filter<T>
used to coerce the raw XPath results in to
the correct Generic type.java.util.List<T> evaluate(java.lang.Object context)
In the JDOM2 XPath API the results of the raw XPath query are processed
by the attached Filter<T>
instance to coerce the results in to
the correct generic type for this XPathExpression. The Filter process may
cause some XPath results to be removed from the final results. You may
instead want to call the diagnose(Object, boolean)
method to
have access to both the raw XPath results as well as the filtered and
generically typed results.
context
- The context against which to process the query.java.lang.NullPointerException
- if the context is nulljava.lang.IllegalStateException
- if the expression is not runnable or if the context node is not
appropriate for the expression.T evaluateFirst(java.lang.Object context)
The concept of the 'first' result is applied before any JDOM Filter is applied. Thus, if the underlying XPath query has some results, the first result is sent through the filter. If it matches it is returned, if it does not match, then null is returned (even if some subsequent result underlying XPath result would pass the filter).
This allows the XPath implementation to optimise the evaluateFirst method by potentially using 'short-circuit' conditions in the evaluation.
context
- The context against which to evaluate the expression. This will
typically be a Document, Element, or some other JDOM object.java.lang.NullPointerException
- if the context is nulljava.lang.IllegalStateException
- if the expression is not runnable or if the context node is not
appropriate for the expression.XPathDiagnostic<T> diagnose(java.lang.Object context, boolean firstonly)
context
- The context against which to run the query.firstonly
- Indicate whether the XPath expression can be terminated after the
first successful result value.XPathDiagnostic
instance.java.lang.NullPointerException
- if the context is nulljava.lang.IllegalStateException
- if the expression is not runnable or if the context node is not
appropriate for the expression.Copyright © 2021 Jason Hunter, Brett McLaughlin. All Rights Reserved.