Class JavaUnicodeEscaper


  • @Deprecated
    public class JavaUnicodeEscaper
    extends UnicodeEscaper
    Deprecated.
    As of 3.6, use Apache Commons Text UnicodeEscaper instead
    Translates code points to their Unicode escaped value suitable for Java source.
    Since:
    3.2
    • Constructor Detail

      • JavaUnicodeEscaper

        public JavaUnicodeEscaper​(int below,
                                  int above,
                                  boolean between)
        Deprecated.
        Constructs a JavaUnicodeEscaper for the specified range. This is the underlying method for the other constructors/builders. The below and above boundaries are inclusive when between is true and exclusive when it is false.
        Parameters:
        below - int value representing the lowest code point boundary
        above - int value representing the highest code point boundary
        between - whether to escape between the boundaries or outside them
    • Method Detail

      • between

        public static JavaUnicodeEscaper between​(int codePointLow,
                                                 int codePointHigh)
        Deprecated.
        Constructs a JavaUnicodeEscaper between the specified values (inclusive).
        Parameters:
        codePointLow - above which to escape
        codePointHigh - below which to escape
        Returns:
        the newly created UnicodeEscaper instance
      • outsideOf

        public static JavaUnicodeEscaper outsideOf​(int codePointLow,
                                                   int codePointHigh)
        Deprecated.
        Constructs a JavaUnicodeEscaper outside of the specified values (exclusive).
        Parameters:
        codePointLow - below which to escape
        codePointHigh - above which to escape
        Returns:
        the newly created UnicodeEscaper instance