| java.lang.Object com.ibm.icu.text.FunctionReplacer
FunctionReplacer | class FunctionReplacer implements UnicodeReplacer(Code) | | A replacer that calls a transliterator to generate its output text.
The input text to the transliterator is the output of another
UnicodeReplacer object. That is, this replacer wraps another
replacer with a transliterator.
author: Alan Liu |
Constructor Summary | |
public | FunctionReplacer(Transliterator theTranslit, UnicodeReplacer theReplacer) Construct a replacer that takes the output of the given
replacer, passes it through the given transliterator, and emits
the result as output. |
FunctionReplacer | public FunctionReplacer(Transliterator theTranslit, UnicodeReplacer theReplacer)(Code) | | Construct a replacer that takes the output of the given
replacer, passes it through the given transliterator, and emits
the result as output.
|
addReplacementSetTo | public void addReplacementSetTo(UnicodeSet toUnionTo)(Code) | | Union the set of all characters that may output by this object
into the given set.
Parameters: toUnionTo - the set into which to union the output characters |
replace | public int replace(Replaceable text, int start, int limit, int[] cursor)(Code) | | UnicodeReplacer API
|
toReplacerPattern | public String toReplacerPattern(boolean escapeUnprintable)(Code) | | UnicodeReplacer API
|
|
|