Uses of Class
org.apache.lucene.analysis.hunspell.DictEntry
-
Packages that use DictEntry 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 DictEntry in org.apache.lucene.analysis.hunspell
Fields in org.apache.lucene.analysis.hunspell declared as DictEntry Modifier and Type Field Description private DictEntry
AffixedWord. entry
Fields in org.apache.lucene.analysis.hunspell with type parameters of type DictEntry Modifier and Type Field Description private java.util.List<DictEntry>
EntrySuggestion. toAdd
private java.util.List<DictEntry>
EntrySuggestion. toEdit
Methods in org.apache.lucene.analysis.hunspell that return DictEntry Modifier and Type Method Description (package private) static DictEntry
DictEntry. create(java.lang.String stem, java.lang.String flags)
(package private) DictEntry
Dictionary. dictEntry(java.lang.String root, int flagId, int morphDataId)
DictEntry
AffixedWord. getDictEntry()
Methods in org.apache.lucene.analysis.hunspell that return types with arguments of type DictEntry Modifier and Type Method Description java.util.List<DictEntry>
EntrySuggestion. getEntriesToAdd()
java.util.List<DictEntry>
EntrySuggestion. getEntriesToEdit()
Methods in org.apache.lucene.analysis.hunspell with parameters of type DictEntry Modifier and Type Method Description private java.util.List<AffixedWord>
WordFormGenerator. getAllWordForms(DictEntry entry, char[] encodedFlags, java.lang.Runnable checkCanceled)
Method parameters in org.apache.lucene.analysis.hunspell with type arguments of type DictEntry Modifier and Type Method Description private void
WordFormGenerator.WordCompressor. addEntry(java.util.List<DictEntry> toEdit, java.util.List<DictEntry> toAdd, java.lang.String stem, CharHashSet flags)
Constructors in org.apache.lucene.analysis.hunspell with parameters of type DictEntry Constructor Description AffixedWord(java.lang.String word, DictEntry entry, java.util.List<AffixedWord.Affix> prefixes, java.util.List<AffixedWord.Affix> suffixes)
Constructor parameters in org.apache.lucene.analysis.hunspell with type arguments of type DictEntry Constructor Description EntrySuggestion(java.util.List<DictEntry> toEdit, java.util.List<DictEntry> toAdd, java.util.List<java.lang.String> extraGenerated)
-