Package lumis.util
Class Xml
- java.lang.Object
-
- lumis.util.Xml
-
@StableMinor(version="16.1", sinceVersion="8.1") public class Xml extends java.lang.Object
Provides XML operations.- Since:
- 8.1.0
- Version:
- $Revision: 26156 $ $Date: 2024-01-13 10:26:46 -0300 (Sat, 13 Jan 2024) $
-
-
Constructor Summary
Constructors Constructor Description Xml()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.List<org.w3c.dom.Node>
selectNodes(java.lang.String xpath, org.w3c.dom.Node context)
Returns the matchednodes
from the given XPath and context.static org.w3c.dom.Node
selectSingleNode(java.lang.String xpath, org.w3c.dom.Node context)
Returns the matchednode
from the given XPath and context.static java.lang.String
valueOf(java.lang.String xpath, org.w3c.dom.Node context)
Returns the evaluated value of the given XPath from the given context.
-
-
-
Method Detail
-
valueOf
public static java.lang.String valueOf(java.lang.String xpath, org.w3c.dom.Node context)
Returns the evaluated value of the given XPath from the given context.- Parameters:
xpath
- the XPath.context
- the context.- Returns:
- the evaluated value of the given XPath from the given context.
- Since:
- 8.1.0
-
selectNodes
public static java.util.List<org.w3c.dom.Node> selectNodes(java.lang.String xpath, org.w3c.dom.Node context)
Returns the matchednodes
from the given XPath and context.- Parameters:
xpath
- the XPath.context
- the context.- Returns:
- the matched
nodes
from the given XPath and context. - Since:
- 8.1.0
-
selectSingleNode
public static org.w3c.dom.Node selectSingleNode(java.lang.String xpath, org.w3c.dom.Node context)
Returns the matchednode
from the given XPath and context.- Parameters:
xpath
- the XPath.context
- the context.- Returns:
- the matched
node
from the given XPath and context. - Since:
- 8.1.0
-
-