public class NumericEntityEscaper extends CodePointTranslator
Constructor | Description |
---|---|
NumericEntityEscaper() |
Constructs a
NumericEntityEscaper for all characters. |
Modifier and Type | Method | Description |
---|---|---|
static NumericEntityEscaper |
above(int codepoint) |
Constructs a
NumericEntityEscaper above the specified value (exclusive). |
static NumericEntityEscaper |
below(int codepoint) |
Constructs a
NumericEntityEscaper below the specified value (exclusive). |
static NumericEntityEscaper |
between(int codepointLow,
int codepointHigh) |
Constructs a
NumericEntityEscaper between the specified values (inclusive). |
static NumericEntityEscaper |
outsideOf(int codepointLow,
int codepointHigh) |
Constructs a
NumericEntityEscaper outside of the specified values (exclusive). |
boolean |
translate(int codepoint,
java.io.Writer out) |
Translate the specified codepoint into another.
|
hex, translate, translate, with
translate
public NumericEntityEscaper()
Constructs a NumericEntityEscaper
for all characters.
public static NumericEntityEscaper below(int codepoint)
Constructs a NumericEntityEscaper
below the specified value (exclusive).
codepoint
- below which to escapeNumericEntityEscaper
instancepublic static NumericEntityEscaper above(int codepoint)
Constructs a NumericEntityEscaper
above the specified value (exclusive).
codepoint
- above which to escapeNumericEntityEscaper
instancepublic static NumericEntityEscaper between(int codepointLow, int codepointHigh)
Constructs a NumericEntityEscaper
between the specified values (inclusive).
codepointLow
- above which to escapecodepointHigh
- below which to escapeNumericEntityEscaper
instancepublic static NumericEntityEscaper outsideOf(int codepointLow, int codepointHigh)
Constructs a NumericEntityEscaper
outside of the specified values (exclusive).
codepointLow
- below which to escapecodepointHigh
- above which to escapeNumericEntityEscaper
instancepublic boolean translate(int codepoint, java.io.Writer out) throws java.io.IOException
translate
in class CodePointTranslator
codepoint
- int character input to translateout
- Writer to optionally push the translated output tojava.io.IOException
- if and only if the Writer produces an IOExceptionCopyright © 2001-2017 - Apache Software Foundation