Interface MapSerializerUtil.EscapeInfoProvider

    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      char escape​(char c)
      Deprecated.
      Converts character to its representation in the final string
      char escapeCharacter()
      Deprecated.
      Escape character to use before escaped characters (before character representations generated by escape(char) method)
      char unescape​(char c)
      Deprecated.
      Converts character representation to original character
    • Method Detail

      • escape

        char escape​(char c)
        Deprecated.
        Converts character to its representation in the final string
        Parameters:
        c - character to convert
        Returns:
        character representation or 0 if conversion is not applicable to that character
      • unescape

        char unescape​(char c)
        Deprecated.
        Converts character representation to original character
        Parameters:
        c - character representation
        Returns:
        see above
      • escapeCharacter

        char escapeCharacter()
        Deprecated.
        Escape character to use before escaped characters (before character representations generated by escape(char) method)
        Returns:
        see above