public abstract static class EscapeUtil.CharSequenceTranslator
extends java.lang.Object
Constructor and Description |
---|
CharSequenceTranslator() |
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
hex(int codepoint)
Returns an upper case hexadecimal
String for the given
character. |
java.lang.String |
translate(java.lang.CharSequence input)
Helper for non-Writer usage.
|
abstract int |
translate(java.lang.CharSequence input,
int index,
java.io.Writer out)
Translate a set of codepoints, represented by an int index into a CharSequence,
into another set of codepoints.
|
void |
translate(java.lang.CharSequence input,
java.io.Writer out)
Translate an input onto a Writer.
|
EscapeUtil.CharSequenceTranslator |
with(EscapeUtil.CharSequenceTranslator... translators)
Helper method to create a merger of this translator with another set of
translators.
|
public abstract int translate(java.lang.CharSequence input, int index, java.io.Writer out) throws java.io.IOException
input
- CharSequence that is being translatedindex
- int representing the current point of translationout
- Writer to translate the text tojava.io.IOException
- if and only if the Writer produces an IOExceptionpublic final java.lang.String translate(java.lang.CharSequence input)
input
- CharSequence to be translatedpublic final void translate(java.lang.CharSequence input, java.io.Writer out) throws java.io.IOException
input
- CharSequence that is being translatedout
- Writer to translate the text tojava.io.IOException
- if and only if the Writer produces an IOException@SafeVarargs public final EscapeUtil.CharSequenceTranslator with(EscapeUtil.CharSequenceTranslator... translators)
translators
- CharSequenceTranslator array of translators to merge with this onepublic static java.lang.String hex(int codepoint)
Returns an upper case hexadecimal String
for the given
character.
codepoint
- The codepoint to convert.String