Provides various ways to access the content of an XML document.
Type | Name and description |
---|---|
Element |
asElement() Returns the XML document as a DOM Element. |
Node |
asNode() Returns the XML document as a Groovy Node. |
StringBuilder |
asString() Returns the XML document as a StringBuilder. |
Returns the XML document as a DOM Element. Changes to the returned instance will be applied to the XML. The returned instance is only valid until one of the other methods on this interface are called.
Element
representation of the XML.Returns the XML document as a Groovy Node. Changes to the returned instance will be applied to the XML. The returned instance is only valid until one of the other methods on this interface are called.
Node
representation of the XML.Returns the XML document as a StringBuilder. Changes to the returned instance will be applied to the XML. The returned instance is only valid until one of the other methods on this interface are called.
StringBuilder
representation of the XML.