Class Xml


  • public class Xml
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      Xml()  
    • Method Summary

      Modifier and Type Method Description
      static java.lang.String escape​(char c)  
      static java.lang.String escape​(java.lang.Character c)  
      static java.lang.String escape​(java.lang.Object buffer)  
      static java.lang.String escape​(java.lang.String buffer)
      Performs the following substring replacements (to facilitate output to XML/HTML pages): & -> & < -> < > -> > " -> " ' -> ' See also OutSupport.writeEscapedXml().
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • specialCharactersRepresentation

        public static char[][] specialCharactersRepresentation
    • Constructor Detail

      • Xml

        public Xml()
    • Method Detail

      • escape

        public static java.lang.String escape​(java.lang.Object buffer)
      • escape

        public static java.lang.String escape​(char c)
      • escape

        public static java.lang.String escape​(java.lang.Character c)
      • escape

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