Uses of Interface
opennlp.tools.util.normalizer.CharSequenceNormalizer
-
Packages that use CharSequenceNormalizer Package Description opennlp.tools.langdetect Package related to predicting languages from samples of text.opennlp.tools.util.normalizer -
-
Uses of CharSequenceNormalizer in opennlp.tools.langdetect
Fields in opennlp.tools.langdetect declared as CharSequenceNormalizer Modifier and Type Field Description protected CharSequenceNormalizer
DefaultLanguageDetectorContextGenerator. normalizer
Constructors in opennlp.tools.langdetect with parameters of type CharSequenceNormalizer Constructor Description DefaultLanguageDetectorContextGenerator(int minLength, int maxLength, CharSequenceNormalizer... normalizers)
Creates a customizableDefaultLanguageDetectorContextGenerator
that computes ngrams from text. -
Uses of CharSequenceNormalizer in opennlp.tools.util.normalizer
Classes in opennlp.tools.util.normalizer that implement CharSequenceNormalizer Modifier and Type Class Description class
AggregateCharSequenceNormalizer
ACharSequenceNormalizer
implementation that aggregates the functionality of other normalizers.class
EmojiCharSequenceNormalizer
AEmojiCharSequenceNormalizer
implementation that normalizes text in terms of emojis.class
NumberCharSequenceNormalizer
ANumberCharSequenceNormalizer
implementation that normalizes text in terms of numbers.class
ShrinkCharSequenceNormalizer
AShrinkCharSequenceNormalizer
implementation that shrinks repeated spaces / chars in text.class
TwitterCharSequenceNormalizer
ATwitterCharSequenceNormalizer
implementation that normalizes text in terms of Twitter character patterns.class
UrlCharSequenceNormalizer
AUrlCharSequenceNormalizer
implementation that normalizes text in terms of URls and email addresses.Constructors in opennlp.tools.util.normalizer with parameters of type CharSequenceNormalizer Constructor Description AggregateCharSequenceNormalizer(CharSequenceNormalizer... normalizers)
-