| Package | Description |
|---|---|
| org.apache.excalibur.xml.xpath |
XPath processor and implementation.
|
| Modifier and Type | Method and Description |
|---|---|
static org.w3c.dom.Node |
XPathUtil.getSingleNode(XPathProcessor processor,
org.w3c.dom.Node rootNode,
java.lang.String path)
Return the
Node from the DOM Node rootNode
using the XPath expression path. |
static boolean |
XPathUtil.getValueAsBooleanOf(XPathProcessor processor,
org.w3c.dom.Node root,
java.lang.String path)
Get the boolean value of the node specified by the XPath.
|
static boolean |
XPathUtil.getValueAsBooleanOf(XPathProcessor processor,
org.w3c.dom.Node root,
java.lang.String path,
boolean defaultValue)
Get the boolean value of the node specified by the XPath.
|
static java.lang.String |
XPathUtil.getValueOf(XPathProcessor processor,
org.w3c.dom.Node root,
java.lang.String path)
Get the value of the node specified by the XPath.
|
static java.lang.String |
XPathUtil.getValueOf(XPathProcessor processor,
org.w3c.dom.Node root,
java.lang.String path,
java.lang.String defaultValue)
Get the value of the node specified by the XPath.
|