Package org.apache.groovy.xml.extensions
Class XmlExtensions
java.lang.Object
org.apache.groovy.xml.extensions.XmlExtensions
This class defines all the new XML-related groovy methods which enhance
the normal JDK XML classes when inside the Groovy environment.
Static methods are used with the first parameter the destination class.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <T> TEnablesnode as Typecoercion for XML Nodes.Makes NodeList iterable by returning a read-only Iterator which traverses over each Node.static StringTransforms the element to its text equivalent.
-
Constructor Details
-
XmlExtensions
public XmlExtensions()
-
-
Method Details
-
iterator
Makes NodeList iterable by returning a read-only Iterator which traverses over each Node.- Parameters:
nodeList- a NodeList- Returns:
- an Iterator for a NodeList
- Since:
- 1.0
-
serialize
Transforms the element to its text equivalent. (The resulting string does not contain a xml declaration. UseXmlUtil.serialize(element)if you need the declaration.)- Parameters:
element- the element to serialize- Returns:
- the string representation of the element
- Since:
- 2.1
-
asType
Enablesnode as Typecoercion for XML Nodes. Converts the Node to a Map viaNode.toMap()and then uses Groovy's standard Map coercion to produce the typed object. Does not require Jackson on the classpath.- Type Parameters:
T- the target type- Parameters:
self- the Node to converttype- the target type- Returns:
- a typed object
- Since:
- 6.0.0
-