Inheritance diagram for org::jdom::xpath::JaxenXPath:
Public Member Functions | |
JaxenXPath (String expr) throws JDOMException | |
List | selectNodes (Object context) throws JDOMException |
Object | selectSingleNode (Object context) throws JDOMException |
String | valueOf (Object context) throws JDOMException |
Number | numberValueOf (Object context) throws JDOMException |
void | setVariable (String name, Object value) throws IllegalArgumentException |
void | addNamespace (Namespace namespace) |
String | getXPath () |
String | toString () |
boolean | equals (Object o) |
int | hashCode () |
|
Creates a new XPath wrapper object, compiling the specified XPath expression.
|
|
Adds a namespace definition to the list of namespaces known of this XPath expression. Note: In XPath, there is no such thing as a 'default namespace'. The empty prefix always resolves to the empty namespace URI.
Implements org::jdom::xpath::XPath. |
|
Returns the wrapped XPath expression as a string.
Implements org::jdom::xpath::XPath. |
|
Returns the number value of the first item selected by applying the wrapped XPath expression to the given context.
Implements org::jdom::xpath::XPath. |
|
Evaluates the wrapped XPath expression and returns the list of selected items.
Implements org::jdom::xpath::XPath. |
|
Evaluates the wrapped XPath expression and returns the first entry in the list of selected nodes (or atomics).
Implements org::jdom::xpath::XPath. |
|
Defines an XPath variable and sets its value.
Implements org::jdom::xpath::XPath. |
|
Returns the string value of the first node selected by applying the wrapped XPath expression to the given context.
Implements org::jdom::xpath::XPath. |