Uses of Class
org.apache.lucene.analysis.hunspell.Suggestion
-
Packages that use Suggestion 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 Suggestion in org.apache.lucene.analysis.hunspell
Fields in org.apache.lucene.analysis.hunspell with type parameters of type Suggestion Modifier and Type Field Description private java.util.LinkedHashSet<Suggestion>
ModifyingSuggester. result
Methods in org.apache.lucene.analysis.hunspell that return Suggestion Modifier and Type Method Description private Suggestion
ModifyingSuggester. capitalizeAfterSpace(java.lang.String candidate)
private Suggestion
ModifyingSuggester. createSuggestion(java.lang.String candidate)
Methods in org.apache.lucene.analysis.hunspell that return types with arguments of type Suggestion Modifier and Type Method Description private java.util.List<Suggestion>
ModifyingSuggester. checkDictionaryForSplitSuggestions(java.lang.String word)
Method parameters in org.apache.lucene.analysis.hunspell with type arguments of type Suggestion Modifier and Type Method Description private java.lang.Runnable
Suggester. checkTimeLimit(java.lang.String word, java.util.Set<Suggestion> suggestions, long timeLimitMs, java.lang.Runnable checkCanceled)
private java.util.List<java.lang.String>
GeneratingSuggester. getMostRelevantSuggestions(java.util.TreeSet<GeneratingSuggester.Weighted<java.lang.String>> bySimilarity, java.util.Set<Suggestion> prevSuggestions)
private java.lang.Runnable
Suggester. handleCustomTimeoutException(java.lang.Runnable checkCanceled, java.util.LinkedHashSet<Suggestion> suggestions)
private java.util.List<java.lang.String>
Suggester. postprocess(java.util.Collection<Suggestion> suggestions)
(package private) java.util.List<java.lang.String>
GeneratingSuggester. suggest(java.lang.String word, WordCase originalCase, java.util.Set<Suggestion> prevSuggestions)
private java.util.List<java.lang.String>
Suggester. suggest(java.lang.String word, java.util.LinkedHashSet<Suggestion> suggestions, java.lang.Runnable checkCanceled)
Constructor parameters in org.apache.lucene.analysis.hunspell with type arguments of type Suggestion Constructor Description ModifyingSuggester(Hunspell speller, java.util.LinkedHashSet<Suggestion> result, java.lang.String misspelled, WordCase wordCase, FragmentChecker checker)
-