Package opennlp.tools.util.normalizer
Class ShrinkCharSequenceNormalizer
- java.lang.Object
-
- opennlp.tools.util.normalizer.ShrinkCharSequenceNormalizer
-
- All Implemented Interfaces:
Serializable
,CharSequenceNormalizer
public class ShrinkCharSequenceNormalizer extends Object implements CharSequenceNormalizer
Normalizer to shrink repeated spaces / chars- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ShrinkCharSequenceNormalizer()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ShrinkCharSequenceNormalizer
getInstance()
CharSequence
normalize(CharSequence text)
normalize a sequence of characters
-
-
-
Method Detail
-
getInstance
public static ShrinkCharSequenceNormalizer getInstance()
-
normalize
public CharSequence normalize(CharSequence text)
Description copied from interface:CharSequenceNormalizer
normalize a sequence of characters- Specified by:
normalize
in interfaceCharSequenceNormalizer
- Parameters:
text
- the char sequence to normalize- Returns:
- the normalized char sequence
-
-