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 instead
Translates code points to their XML numeric entity escaped value.
- Since:
- 3.0
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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 org.apache.commons.lang3.text.translate.CodePointTranslatortranslateMethods inherited from class org.apache.commons.lang3.text.translate.CharSequenceTranslatorhex, translate, translate, with
- 
Constructor Details- 
NumericEntityEscaperpublic NumericEntityEscaper()Deprecated.Constructs aNumericEntityEscaperfor all characters.
 
- 
- 
Method Details- 
aboveDeprecated.Constructs aNumericEntityEscaperabove the specified value (exclusive).- Parameters:
- codePoint- above which to escape
- Returns:
- the newly created NumericEntityEscaperinstance
 
- 
belowDeprecated.Constructs aNumericEntityEscaperbelow the specified value (exclusive).- Parameters:
- codePoint- below which to escape
- Returns:
- the newly created NumericEntityEscaperinstance
 
- 
betweenDeprecated.Constructs aNumericEntityEscaperbetween the specified values (inclusive).- Parameters:
- codePointLow- above which to escape
- codePointHigh- below which to escape
- Returns:
- the newly created NumericEntityEscaperinstance
 
- 
outsideOfDeprecated.Constructs aNumericEntityEscaperoutside of the specified values (exclusive).- Parameters:
- codePointLow- below which to escape
- codePointHigh- above which to escape
- Returns:
- the newly created NumericEntityEscaperinstance
 
- 
translateDeprecated.Translate the specified code point into another.- Specified by:
- translatein class- CodePointTranslator
- 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
 
 
-