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 java.util.List<org.w3c.dom.Node> |
selectNodes(java.lang.String path,
java.lang.Object node)
Select all nodes that are selected by this XPath expression.
|
static java.util.List<org.w3c.dom.Node> |
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)
Return the text of a node, or the value of an attribute
|
static java.lang.String |
selectText(java.lang.String path,
java.lang.Object node,
java.util.Map<java.lang.String,java.lang.String> namespaces)
Return the text of a node, or the value of an attribute
|
public static java.util.List<org.w3c.dom.Node> selectNodes(java.lang.String path, java.lang.Object node, java.util.Map<java.lang.String,java.lang.String> namespaces)
path
- Path expressionnode
- The node objectnamespaces
- Namespaces that need to be available in the xpath, where the key is the prefix and the value the
namespace URIpublic static java.util.List<org.w3c.dom.Node> selectNodes(java.lang.String path, java.lang.Object node)
path
- Path expressionnode
- The node objectpublic 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 name spacespublic 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.Guillaume Bort & zenexity - Distributed under Apache 2 licence, without any warrantly