Uses of Class
org.apache.lucene.analysis.hunspell.WordContext
-
Packages that use WordContext 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 WordContext in org.apache.lucene.analysis.hunspell
Fields in org.apache.lucene.analysis.hunspell declared as WordContext Modifier and Type Field Description private WordContext
Stemmer.StemCandidateProcessor. context
Methods in org.apache.lucene.analysis.hunspell that return WordContext Modifier and Type Method Description static WordContext
WordContext. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WordContext[]
WordContext. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.lucene.analysis.hunspell with parameters of type WordContext Modifier and Type Method Description (package private) boolean
Stemmer. doStem(char[] word, int offset, int length, WordContext context, Stemmer.RootProcessor processor)
(package private) Root<CharsRef>
Hunspell. findStem(char[] wordChars, int offset, int length, WordCase originalCase, WordContext context)
private boolean
Stemmer. isAffixCompatible(int affix, boolean isPrefix, int outerPrefix, int outerSuffix, WordContext context)
private boolean
Stemmer. isRootCompatibleWithContext(WordContext context, int lastAffix, int entryId)
Constructors in org.apache.lucene.analysis.hunspell with parameters of type WordContext Constructor Description StemCandidateProcessor(WordContext context)
-