Uses of Class
org.apache.lucene.analysis.hunspell.Dictionary
-
Packages that use Dictionary Package Description org.apache.lucene.analysis.hunspell Stemming TokenFilter using a Java implementation of the Hunspell stemming algorithm. -
-
Uses of Dictionary in org.apache.lucene.analysis.hunspell
Fields in org.apache.lucene.analysis.hunspell declared as Dictionary Modifier and Type Field Description private Dictionary
HunspellStemFilterFactory. dictionary
private Dictionary
Stemmer. dictionary
Constructors in org.apache.lucene.analysis.hunspell with parameters of type Dictionary Constructor Description HunspellStemFilter(TokenStream input, Dictionary dictionary)
Create aHunspellStemFilter
outputting all possible stems.HunspellStemFilter(TokenStream input, Dictionary dictionary, boolean dedup)
Create aHunspellStemFilter
outputting all possible stems.HunspellStemFilter(TokenStream input, Dictionary dictionary, boolean dedup, boolean longestOnly)
Creates a new HunspellStemFilter that will stem tokens from the given TokenStream using affix rules in the provided DictionaryStemmer(Dictionary dictionary)
Constructs a new Stemmer which will use the provided Dictionary to create its stems.
-