Uses of Interface
org.apache.lucene.analysis.hunspell.Stemmer.RootProcessor
-
Packages that use Stemmer.RootProcessor 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.RootProcessor in org.apache.lucene.analysis.hunspell
Methods in org.apache.lucene.analysis.hunspell with parameters of type Stemmer.RootProcessor Modifier and Type Method Description private boolean
Stemmer. applyAffix(char[] strippedWord, int offset, int length, WordContext context, int affix, int previousAffix, int prefixId, int recursionDepth, boolean prefix, Stemmer.RootProcessor processor)
Applies the affix rule to the given word, producing a list of stems if any are foundprivate boolean
Stemmer. callProcessor(char[] word, int offset, int length, Stemmer.RootProcessor processor, IntsRef forms, int i)
(package private) boolean
Stemmer. doStem(char[] word, int offset, int length, WordContext context, Stemmer.RootProcessor processor)
private boolean
Stemmer. stem(char[] word, int offset, int length, WordContext context, int previous, char prevFlag, int prefixId, int recursionDepth, boolean doPrefix, boolean previousWasPrefix, Stemmer.RootProcessor processor)
Generates a list of stems for the provided word
-