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 Details

    • XmlUtil

      public XmlUtil()
      Deprecated.
  • Method Details

    • 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 serialize
      os - 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 serialize
      w - the Writer to write to