Groovy 1.7.2

groovy.xml
Class XmlUtil

java.lang.Object
  groovy.xml.XmlUtil

public class XmlUtil
extends Object

Used for pretty printing XML content.

author:
Paul King


Method Summary
static String serialize(org.w3c.dom.Element element)

Return a pretty String version of the Element.

static void serialize(org.w3c.dom.Element element, OutputStream os)

Write a pretty version of the Element to the OutputStream.

static void serialize(org.w3c.dom.Element element, Writer w)

Write a pretty version of the Element to the Writer.

static String serialize(Node node)

Return a pretty String version of the Node.

static void serialize(Node node, OutputStream os)

Write a pretty version of the Node to the OutputStream.

static void serialize(Node node, Writer w)

Write a pretty version of the Node to the Writer.

static String serialize(GPathResult node)

Return a pretty version of the GPathResult.

static void serialize(GPathResult node, OutputStream os)

Write a pretty version of the GPathResult to the OutputStream.

static void serialize(GPathResult node, Writer w)

Write a pretty version of the GPathResult to the Writer.

static String serialize(Writable writable)

Return a pretty String version of the XML content produced by the Writable.

static void serialize(Writable writable, OutputStream os)

Write a pretty version of the XML content produced by the Writable to the OutputStream.

static void serialize(Writable writable, Writer w)

Write a pretty version of the XML content produced by the Writable to the Writer.

static String serialize(String xmlString)

Return a pretty version of the XML content contained in the given String.

static void serialize(String xmlString, OutputStream os)

Write a pretty version of the given XML string to the OutputStream.

static void serialize(String xmlString, Writer w)

Write a pretty version of the given XML string to the Writer.

 
Methods inherited from class Object
wait, wait, wait, hashCode, getClass, equals, toString, notify, notifyAll
 

Method Detail

serialize

public static String serialize(org.w3c.dom.Element element)
Return a pretty String version of the Element.
param:
element the Element to serialize
return:
the pretty String representation of the Element


serialize

public static void serialize(org.w3c.dom.Element element, OutputStream os)
Write a pretty version of the Element to the OutputStream.
param:
element the Element to serialize
param:
os the OutputStream to write to


serialize

public static void serialize(org.w3c.dom.Element element, Writer w)
Write a pretty version of the Element to the Writer.
param:
element the Element to serialize
param:
w the Writer to write to


serialize

public static String serialize(Node node)
Return a pretty String version of the Node.
param:
node the Node to serialize
return:
the pretty String representation of the Node


serialize

public static void serialize(Node node, OutputStream os)
Write a pretty version of the Node to the OutputStream.
param:
node the Node to serialize
param:
os the OutputStream to write to


serialize

public static void serialize(Node node, Writer w)
Write a pretty version of the Node to the Writer.
param:
node the Node to serialize
param:
w the Writer to write to


serialize

public static String serialize(GPathResult node)
Return a pretty version of the GPathResult.
param:
node a GPathResult to serialize to a String
return:
the pretty String representation of the GPathResult


serialize

public static void serialize(GPathResult node, OutputStream os)
Write a pretty version of the GPathResult to the OutputStream.
param:
node a GPathResult to serialize
param:
os the OutputStream to write to


serialize

public static void serialize(GPathResult node, Writer w)
Write a pretty version of the GPathResult to the Writer.
param:
node a GPathResult to serialize
param:
w the Writer to write to


serialize

public static String serialize(Writable writable)
Return a pretty String version of the XML content produced by the Writable.
param:
writable the Writable to serialize
return:
the pretty String representation of the content from the Writable


serialize

public static void serialize(Writable writable, OutputStream os)
Write a pretty version of the XML content produced by the Writable to the OutputStream.
param:
writable the Writable to serialize
param:
os the OutputStream to write to


serialize

public static void serialize(Writable writable, Writer w)
Write a pretty version of the XML content produced by the Writable to the Writer.
param:
writable the Writable to serialize
param:
w the Writer to write to


serialize

public static String serialize(String xmlString)
Return a pretty version of the XML content contained in the given String.
param:
xmlString the String to serialize
return:
the pretty String representation of the original content


serialize

public static void serialize(String xmlString, OutputStream os)
Write a pretty version of the given XML string to the OutputStream.
param:
xmlString the String to serialize
param:
os the OutputStream to write to


serialize

public static void serialize(String xmlString, Writer w)
Write a pretty version of the given XML string to the Writer.
param:
xmlString the String to serialize
param:
w the Writer to write to


 

Copyright © 2003-2010 The Codehaus. All rights reserved.