public class XPath
extends java.lang.Object
Constructor and Description |
---|
XPath() |
Modifier and Type | Method and Description |
---|---|
static org.w3c.dom.Node |
selectNode(java.lang.String path,
java.lang.Object node) |
static org.w3c.dom.Node |
selectNode(java.lang.String path,
java.lang.Object node,
java.util.Map<java.lang.String,java.lang.String> namespaces) |
static org.w3c.dom.NodeList |
selectNodes(java.lang.String path,
java.lang.Object node)
Select all nodes that are selected by this XPath expression.
|
static org.w3c.dom.NodeList |
selectNodes(java.lang.String path,
java.lang.Object node,
java.util.Map<java.lang.String,java.lang.String> namespaces)
Select all nodes that are selected by this XPath expression.
|
static java.lang.String |
selectText(java.lang.String path,
java.lang.Object node) |
static java.lang.String |
selectText(java.lang.String path,
java.lang.Object node,
java.util.Map<java.lang.String,java.lang.String> namespaces) |
public static org.w3c.dom.NodeList selectNodes(java.lang.String path, java.lang.Object node, java.util.Map<java.lang.String,java.lang.String> namespaces)
path
- the xpath expressionnode
- the starting nodenamespaces
- Namespaces that need to be available in the xpath, where the key is the
prefix and the value the namespace URIpublic static org.w3c.dom.NodeList selectNodes(java.lang.String path, java.lang.Object node)
path
- the xpath expressionnode
- the starting nodepublic static org.w3c.dom.Node selectNode(java.lang.String path, java.lang.Object node, java.util.Map<java.lang.String,java.lang.String> namespaces)
public static org.w3c.dom.Node selectNode(java.lang.String path, java.lang.Object node)
public static java.lang.String selectText(java.lang.String path, java.lang.Object node, java.util.Map<java.lang.String,java.lang.String> namespaces)
path
- the XPath to executenode
- the node, node-set or Context object for evaluation. This value can be null.namespaces
- the XML namespaces mappublic static java.lang.String selectText(java.lang.String path, java.lang.Object node)
path
- the XPath to executenode
- the node, node-set or Context object for evaluation. This value can be null.