public interface INormalizerType1
Modifier and Type | Method and Description |
---|---|
INormalizationResult |
normalize(char[] text,
int from,
int length)
Turns a range of characters to its normalized form.
|
INormalizationResult |
normalize(char[] text,
int from,
int length,
boolean cjRemoveWhitespace) |
INormalizationResult normalize(char[] text, int from, int length)
This version of the API may modify the input buffer. If you don't want your input char array to
be modified, use
normalize(char[], int, int, NormalizationResult)
.
text
- the character array to normalizefrom
- starting offset within the character array (inclusive)to
- ending position within the character array (non-inclusive)language
- The human language of the text; do special processing for some languages.INormalizationResult normalize(char[] text, int from, int length, boolean cjRemoveWhitespace)
Copyright © 2012. All Rights Reserved.