Uses of Interface
com.optimaize.langdetect.text.TextFilter
-
Packages that use TextFilter Package Description com.optimaize.langdetect.text Provides functionality for concatenating and cleaning text that is used as a) learning text to producecom.optimaize.langdetect.LanguageProfiles b) for the text for which the language is to be guessed. -
-
Uses of TextFilter in com.optimaize.langdetect.text
Classes in com.optimaize.langdetect.text that implement TextFilter Modifier and Type Class Description classCharNormalizerTextFilterImplDeprecated.can't be used because it would be a big loss to not inline this code.classMultiTextFilterGroups multipleTextFilters as one and runs them in the given order.classRemoveMinorityScriptsTextFilterRemoves text written in scripts that are not the dominant script of the text.classUrlTextFilterRemoves URLs and email addresses from the text.Fields in com.optimaize.langdetect.text declared as TextFilter Modifier and Type Field Description private @NotNull TextFilterTextObject. textFilterprivate TextFilterTextObjectFactory. textFilterFields in com.optimaize.langdetect.text with type parameters of type TextFilter Modifier and Type Field Description private @Nullable java.util.List<TextFilter>MultiTextFilter. filtersprivate java.util.List<TextFilter>TextObjectFactoryBuilder. textFiltersMethods in com.optimaize.langdetect.text with parameters of type TextFilter Modifier and Type Method Description TextObjectFactoryBuilderTextObjectFactoryBuilder. withTextFilter(TextFilter textFilter)Adds the given TextFilter to be run onTextObject.append(java.io.Reader)methods.Constructors in com.optimaize.langdetect.text with parameters of type TextFilter Constructor Description TextObject(@NotNull TextFilter textFilter, int maxTextLength)TextObjectFactory(TextFilter textFilter, int maxTextLength)Constructor parameters in com.optimaize.langdetect.text with type arguments of type TextFilter Constructor Description MultiTextFilter(@NotNull java.util.List<TextFilter> filters)
-