public class LookupTranslator extends CharSequenceTranslator
Constructor and Description |
---|
LookupTranslator(Map<CharSequence,CharSequence> lookupMap)
Define the lookup table to be used in translation
Note that, as of Lang 3.1 (the origin of this code), the key to the lookup
table is converted to a java.lang.String.
|
Modifier and Type | Method and Description |
---|---|
int |
translate(CharSequence input,
int index,
Writer out)
Translate a set of codepoints, represented by an int index into a CharSequence,
into another set of codepoints.
|
hex, translate, translate, with
public LookupTranslator(Map<CharSequence,CharSequence> lookupMap)
lookupMap
- Map<CharSequence, CharSequence> table of translator
mappingspublic 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 IOExceptionCopyright © 2014–2018 The Apache Software Foundation. All rights reserved.