Class Xml

java.lang.Object
org.daypilot.util.Xml

public class Xml extends Object
  • Field Details

    • HIGHEST_SPECIAL

      public static final int HIGHEST_SPECIAL
      See Also:
    • specialCharactersRepresentation

      public static char[][] specialCharactersRepresentation
  • Constructor Details

    • Xml

      public Xml()
  • Method Details

    • escape

      public static String escape(Object buffer)
    • escape

      public static String escape(char c)
    • escape

      public static String escape(Character c)
    • escape

      public static String escape(String buffer)
      Performs the following substring replacements (to facilitate output to XML/HTML pages): invalid input: '&' -> & invalid input: '<' -> < > -> > " -> " ' -> ' See also OutSupport.writeEscapedXml().