public abstract class CodePointTranslator extends CharSequenceTranslator
Constructor and Description |
---|
CodePointTranslator() |
Modifier and Type | Method and Description |
---|---|
int |
translate(CharSequence input,
int index,
Writer out)
Implementation of translate that maps onto the abstract translate(int, Writer) method.
|
abstract boolean |
translate(int codepoint,
Writer out)
Translate the specified codepoint into another.
|
hex, translate, translate, with
public CodePointTranslator()
public final int translate(CharSequence input, int index, Writer out) throws IOException
translate
in class CharSequenceTranslator
input
- CharSequence that is being translatedindex
- int representing the current point of translationout
- Writer to translate the text toIOException
- if and only if the Writer produces an IOExceptionpublic abstract boolean translate(int codepoint, Writer out) throws IOException
codepoint
- int character input to translateout
- Writer to optionally push the translated output toIOException
- if and only if the Writer produces an IOExceptionCopyright © 2001–2015 The Apache Software Foundation. All rights reserved.