Class NumericEntityEscaper
java.lang.Object
org.apache.commons.lang3.text.translate.CharSequenceTranslator
org.apache.commons.lang3.text.translate.CodePointTranslator
org.apache.commons.lang3.text.translate.NumericEntityEscaper
Deprecated.
As of 3.6, use Apache Commons Text
NumericEntityEscaper.
Translates code points to their XML numeric entity escaped value.
- Since:
- 3.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic NumericEntityEscaperabove(int codePoint) Deprecated.Constructs aNumericEntityEscaperabove the specified value (exclusive).static NumericEntityEscaperbelow(int codePoint) Deprecated.Constructs aNumericEntityEscaperbelow the specified value (exclusive).static NumericEntityEscaperbetween(int codePointLow, int codePointHigh) Deprecated.Constructs aNumericEntityEscaperbetween the specified values (inclusive).static NumericEntityEscaperoutsideOf(int codePointLow, int codePointHigh) Deprecated.Constructs aNumericEntityEscaperoutside of the specified values (exclusive).booleanDeprecated.Translate the specified code point into another.Methods inherited from class CodePointTranslator
translateMethods inherited from class CharSequenceTranslator
hex, translate, translate, with
-
Constructor Details
-
NumericEntityEscaper
-
-
Method Details
-
above
Deprecated.Constructs aNumericEntityEscaperabove the specified value (exclusive).- Parameters:
codePoint- above which to escape.- Returns:
- the newly created
NumericEntityEscaperinstance.
-
below
Deprecated.Constructs aNumericEntityEscaperbelow the specified value (exclusive).- Parameters:
codePoint- below which to escape.- Returns:
- the newly created
NumericEntityEscaperinstance.
-
between
Deprecated.Constructs aNumericEntityEscaperbetween the specified values (inclusive).- Parameters:
codePointLow- above which to escape.codePointHigh- below which to escape.- Returns:
- the newly created
NumericEntityEscaperinstance.
-
outsideOf
Deprecated.Constructs aNumericEntityEscaperoutside of the specified values (exclusive).- Parameters:
codePointLow- below which to escape.codePointHigh- above which to escape.- Returns:
- the newly created
NumericEntityEscaperinstance.
-
translate
Deprecated.Translate the specified code point into another.- Specified by:
translatein classCodePointTranslator- Parameters:
codePoint- int character input to translate.out- Writer to optionally push the translated output to.- Returns:
- boolean as to whether translation occurred or not.
- Throws:
IOException- if and only if the Writer produces an IOException.
-