Package groovy.util
Class XmlUtil
- java.lang.Object
 - 
- groovy.util.XmlUtil
 
 
- 
@Deprecated public class XmlUtil extends Object
Deprecated.Used for pretty printing XML content and other XML related utilities. 
- 
- 
Constructor Summary
Constructors Constructor Description XmlUtil()Deprecated. 
- 
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Stringserialize(GPathResult node)Deprecated.static voidserialize(GPathResult node, OutputStream os)Deprecated.static voidserialize(GPathResult node, Writer w)Deprecated. 
 - 
 
- 
- 
Method Detail
- 
serialize
@Deprecated public static String serialize(GPathResult node)
Deprecated.Return a pretty version of the GPathResult.- Parameters:
 node- a GPathResult to serialize to a String- Returns:
 - the pretty String representation of the GPathResult
 
 
- 
serialize
@Deprecated public static void serialize(GPathResult node, OutputStream os)
Deprecated.Write a pretty version of the GPathResult to the OutputStream.- Parameters:
 node- a GPathResult to serializeos- the OutputStream to write to
 
- 
serialize
@Deprecated public static void serialize(GPathResult node, Writer w)
Deprecated.Write a pretty version of the GPathResult to the Writer.- Parameters:
 node- a GPathResult to serializew- the Writer to write to
 
 - 
 
 -