org.apache.uima.internal.util.text
Interface INormalizerType1


public interface INormalizerType1


Method Summary
 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)
           
 

Method Detail

normalize

INormalizationResult normalize(char[] text,
                               int from,
                               int length)
Turns a range of characters to its normalized form.

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).

Parameters:
text - the character array to normalize
from - 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.
Returns:
the normalized array.

normalize

INormalizationResult normalize(char[] text,
                               int from,
                               int length,
                               boolean cjRemoveWhitespace)


Copyright © 2010 The Apache Software Foundation. All Rights Reserved.