Uses of Class
org.apache.lucene.analysis.hunspell.AffixedWord.Affix
-
Packages that use AffixedWord.Affix 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 AffixedWord.Affix in org.apache.lucene.analysis.hunspell
Fields in org.apache.lucene.analysis.hunspell with type parameters of type AffixedWord.Affix Modifier and Type Field Description private java.util.List<AffixedWord.Affix>
AffixedWord. prefixes
private java.util.List<AffixedWord.Affix>
AffixedWord. suffixes
Methods in org.apache.lucene.analysis.hunspell that return types with arguments of type AffixedWord.Affix Modifier and Type Method Description java.util.List<AffixedWord.Affix>
AffixedWord. getPrefixes()
java.util.List<AffixedWord.Affix>
AffixedWord. getSuffixes()
Constructor parameters in org.apache.lucene.analysis.hunspell with type arguments of type AffixedWord.Affix Constructor Description AffixedWord(java.lang.String word, DictEntry entry, java.util.List<AffixedWord.Affix> prefixes, java.util.List<AffixedWord.Affix> suffixes)
-