Uses of Class
com.optimaize.langdetect.ngram.NgramExtractor
-
Packages that use NgramExtractor Package Description com.optimaize.langdetect com.optimaize.langdetect.ngram Provides functionality for handling n-grams.com.optimaize.langdetect.profiles Provides functionality for loading, storing and creatingLanguageProfile
s. -
-
Uses of NgramExtractor in com.optimaize.langdetect
Methods in com.optimaize.langdetect with parameters of type NgramExtractor Modifier and Type Method Description static LanguageDetectorBuilder
LanguageDetectorBuilder. create(@NotNull NgramExtractor ngramExtractor)
-
Uses of NgramExtractor in com.optimaize.langdetect.ngram
Methods in com.optimaize.langdetect.ngram that return NgramExtractor Modifier and Type Method Description static NgramExtractor
NgramExtractors. backwards()
The old way of doing n-grams.NgramExtractor
NgramExtractor. filter(NgramFilter filter)
static NgramExtractor
NgramExtractor. gramLength(int gramLength)
static NgramExtractor
NgramExtractor. gramLengths(Integer... gramLength)
static NgramExtractor
NgramExtractors. standard()
The new standard n-gram algorithm.NgramExtractor
NgramExtractor. textPadding(char textPadding)
To ensure having border grams, this character is added to the left and right of the text. -
Uses of NgramExtractor in com.optimaize.langdetect.profiles
Methods in com.optimaize.langdetect.profiles with parameters of type NgramExtractor Modifier and Type Method Description LanguageProfileBuilder
LanguageProfileBuilder. ngramExtractor(@NotNull NgramExtractor ngramExtractor)
-