Uses of Class
org.apache.lucene.analysis.hunspell.FlagEnumerator
-
Packages that use FlagEnumerator 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 FlagEnumerator in org.apache.lucene.analysis.hunspell
Fields in org.apache.lucene.analysis.hunspell declared as FlagEnumerator Modifier and Type Field Description private FlagEnumerator
WordStorage.Builder. flagEnumerator
Methods in org.apache.lucene.analysis.hunspell with parameters of type FlagEnumerator Modifier and Type Method Description private void
Dictionary. parseAffix(java.util.TreeMap<java.lang.String,IntArrayList> affixes, CharHashSet secondStageFlags, java.lang.String header, java.io.LineNumberReader reader, AffixKind kind, java.util.Map<java.lang.String,java.lang.Integer> seenPatterns, java.util.Map<java.lang.String,java.lang.Integer> seenStrips, FlagEnumerator flags)
Parses a specific affix rule putting the result into the provided affix mapprivate void
Dictionary. readAffixFile(java.io.InputStream affixStream, java.nio.charset.CharsetDecoder decoder, FlagEnumerator flags)
Reads the affix file through the provided InputStream, building up the prefix and suffix mapsprivate WordStorage
Dictionary. readSortedDictionaries(FlagEnumerator flags, SortingStrategy.EntrySupplier sorted)
Constructors in org.apache.lucene.analysis.hunspell with parameters of type FlagEnumerator Constructor Description Builder(int wordCount, double hashFactor, boolean hasCustomMorphData, FlagEnumerator flagEnumerator, char[] noSuggestFlags)
-