public abstract class DomUtils
extends java.lang.Object
Node
,
Element
Constructor and Description |
---|
DomUtils() |
Modifier and Type | Method and Description |
---|---|
static org.xml.sax.ContentHandler |
createContentHandler(org.w3c.dom.Node node)
Returns a SAX
ContentHandler that transforms callback calls to DOM Node s. |
static org.w3c.dom.Element |
getChildElementByTagName(org.w3c.dom.Element ele,
java.lang.String childEleName)
Utility method that returns the first child element identified by its name.
|
static java.util.List<org.w3c.dom.Element> |
getChildElements(org.w3c.dom.Element ele)
Retrieves all child elements of the given DOM element.
|
static java.util.List<org.w3c.dom.Element> |
getChildElementsByTagName(org.w3c.dom.Element ele,
java.lang.String... childEleNames)
Retrieves all child elements of the given DOM element that match any of the given element names.
|
static java.util.List<org.w3c.dom.Element> |
getChildElementsByTagName(org.w3c.dom.Element ele,
java.lang.String childEleName)
Retrieves all child elements of the given DOM element that match the given element name.
|
static java.lang.String |
getChildElementValueByTagName(org.w3c.dom.Element ele,
java.lang.String childEleName)
Utility method that returns the first child element value identified by its name.
|
static java.lang.String |
getTextValue(org.w3c.dom.Element valueEle)
Extracts the text value from the given DOM element, ignoring XML comments.
|
static boolean |
nodeNameEquals(org.w3c.dom.Node node,
java.lang.String desiredName)
Namespace-aware equals comparison.
|
public static java.util.List<org.w3c.dom.Element> getChildElementsByTagName(org.w3c.dom.Element ele, java.lang.String... childEleNames)
getElementsByTagName
method).ele
- the DOM element to analyzechildEleNames
- the child element names to look fororg.w3c.dom.Element
instancesElement
,
Element.getElementsByTagName(java.lang.String)
public static java.util.List<org.w3c.dom.Element> getChildElementsByTagName(org.w3c.dom.Element ele, java.lang.String childEleName)
getElementsByTagName
method).ele
- the DOM element to analyzechildEleName
- the child element name to look fororg.w3c.dom.Element
instancesElement
,
Element.getElementsByTagName(java.lang.String)
@Nullable public static org.w3c.dom.Element getChildElementByTagName(org.w3c.dom.Element ele, java.lang.String childEleName)
ele
- the DOM element to analyzechildEleName
- the child element name to look fororg.w3c.dom.Element
instance, or null
if none found@Nullable public static java.lang.String getChildElementValueByTagName(org.w3c.dom.Element ele, java.lang.String childEleName)
ele
- the DOM element to analyzechildEleName
- the child element name to look fornull
if no child element foundpublic static java.util.List<org.w3c.dom.Element> getChildElements(org.w3c.dom.Element ele)
ele
- the DOM element to analyzeorg.w3c.dom.Element
instancespublic static java.lang.String getTextValue(org.w3c.dom.Element valueEle)
Appends all CharacterData nodes and EntityReference nodes into a single String value, excluding Comment nodes. Only exposes actual user-specified text, no default values of any kind.
CharacterData
,
EntityReference
,
Comment
public static boolean nodeNameEquals(org.w3c.dom.Node node, java.lang.String desiredName)
true
if either
Node.getLocalName()
or Node.getNodeName()
equals
desiredName
, otherwise returns false
.public static org.xml.sax.ContentHandler createContentHandler(org.w3c.dom.Node node)
ContentHandler
that transforms callback calls to DOM Node
s.node
- the node to publish events to