Package org.gradle.api
Interface XmlProvider
public interface XmlProvider
Provides various ways to access the content of an XML document.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the XML document as a DOMElement.asNode()Returns the XML document as a GroovyNode.asString()Returns the XML document as aStringBuilder.
- 
Method Details- 
asStringStringBuilder asString()Returns the XML document as aStringBuilder. 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.- Returns:
- A StringBuilderrepresentation of the XML.
 
- 
asNodeNode asNode()Returns the XML document as a GroovyNode. 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.- Returns:
- A Noderepresentation of the XML.
 
- 
asElementElement asElement()Returns the XML document as a DOMElement. 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.- Returns:
- An Elementrepresentation of the XML.
 
 
-