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.LanguageProfile
s 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 class
CharNormalizerTextFilterImpl
Deprecated.can't be used because it would be a big loss to not inline this code.class
MultiTextFilter
Groups multipleTextFilter
s as one and runs them in the given order.class
RemoveMinorityScriptsTextFilter
Removes text written in scripts that are not the dominant script of the text.class
UrlTextFilter
Removes URLs and email addresses from the text.Fields in com.optimaize.langdetect.text declared as TextFilter Modifier and Type Field Description private @NotNull TextFilter
TextObject. textFilter
private TextFilter
TextObjectFactory. textFilter
Fields in com.optimaize.langdetect.text with type parameters of type TextFilter Modifier and Type Field Description private @Nullable java.util.List<TextFilter>
MultiTextFilter. filters
private java.util.List<TextFilter>
TextObjectFactoryBuilder. textFilters
Methods in com.optimaize.langdetect.text with parameters of type TextFilter Modifier and Type Method Description TextObjectFactoryBuilder
TextObjectFactoryBuilder. 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)
-