Uses of Class
org.apache.lucene.analysis.hunspell.SortingStrategy
Packages that use SortingStrategy
Package
Description
A Java implementation of Hunspell stemming and
spell-checking algorithms (
Hunspell
), and a stemming
TokenFilter (HunspellStemFilter
) based on it.-
Uses of SortingStrategy in org.apache.lucene.analysis.hunspell
Methods in org.apache.lucene.analysis.hunspell that return SortingStrategyModifier and TypeMethodDescriptionstatic SortingStrategy
SortingStrategy.inMemory()
The strategy that loads all entries asString
objects and sorts them in memory.static SortingStrategy
An "offline" strategy that creates temporary files in the given directory and uses them for sorting withOfflineSorter
.Constructors in org.apache.lucene.analysis.hunspell with parameters of type SortingStrategyModifierConstructorDescriptionDictionary
(InputStream affix, List<InputStream> dictionaries, boolean ignoreCase, SortingStrategy sortingStrategy) Creates a new Dictionary containing the information read from the provided InputStreams to hunspell affix and dictionary files.