Uses of Class
org.apache.lucene.analysis.hunspell.Stemmer.StemCandidateProcessor
-
Packages that use Stemmer.StemCandidateProcessor Package Description org.apache.lucene.analysis.hunspell A Java implementation of Hunspell stemming and spell-checking algorithms (Hunspell
), and a stemming TokenFilter (HunspellStemFilter
) based on it. -
-
Uses of Stemmer.StemCandidateProcessor in org.apache.lucene.analysis.hunspell
Methods in org.apache.lucene.analysis.hunspell with parameters of type Stemmer.StemCandidateProcessor Modifier and Type Method Description private boolean
Stemmer. applyAffix(char[] word, int offset, int length, int affix, boolean prefix, int outerPrefix, int innerPrefix, int outerSuffix, Stemmer.StemCandidateProcessor processor)
Applies the affix rule to the given word, producing a list of stems if any are found.(package private) boolean
Stemmer. removeAffixes(char[] word, int offset, int length, boolean doPrefix, int outerPrefix, int innerPrefix, int outerSuffix, Stemmer.StemCandidateProcessor processor)
Generates a list of stems for the provided word.
-