Java org.springframework.util.xml DomUtils fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.util.xml DomUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.util.xml DomUtils.

The text is from its open source code.

Method

ContentHandlercreateContentHandler(Node node)
Returns a SAX ContentHandler that transforms callback calls to DOM Node s.
ElementgetChildElementByTagName(Element ele, String childEleName)
Utility method that returns the first child element identified by its name.
ListgetChildElements(Element ele)
Retrieves all child elements of the given DOM element.
ListgetChildElementsByTagName(Element ele, String... childEleNames)
Retrieves all child elements of the given DOM element that match any of the given element names.
ListgetChildElementsByTagName(Element ele, String childEleName)
Retrieves all child elements of the given DOM element that match the given element name.
StringgetChildElementValueByTagName(Element ele, String childEleName)
Utility method that returns the first child element value identified by its name.
StringgetTextValue(Element valueEle)
Extracts the text value from the given DOM element, ignoring XML comments.
booleannodeNameEquals(Node node, String desiredName)
Namespace-aware equals comparison.