Uses of Interface
org.apache.lucene.search.spell.StringDistance
Packages that use StringDistance
-
Uses of StringDistance in org.apache.lucene.search.spell
Classes in org.apache.lucene.search.spell that implement StringDistanceModifier and TypeClassDescriptionclass
Similarity measure for short strings such as person names.final class
Levenshtein edit distance class.final class
Damerau-Levenshtein (optimal string alignment) implemented in a consistent way as Lucene's FuzzyTermsEnum with the transpositions option enabled.class
N-Gram version of edit distance based on paper by Grzegorz Kondrak, "N-gram similarity and distance".Fields in org.apache.lucene.search.spell declared as StringDistanceModifier and TypeFieldDescriptionstatic final StringDistance
DirectSpellChecker.INTERNAL_LEVENSHTEIN
The default StringDistance, Damerau-Levenshtein distance implemented internally viaLevenshteinAutomata
.Methods in org.apache.lucene.search.spell that return StringDistanceModifier and TypeMethodDescriptionDirectSpellChecker.getDistance()
Get the string distance metric in use.SpellChecker.getStringDistance()
Returns theStringDistance
instance used by thisSpellChecker
instance.Methods in org.apache.lucene.search.spell with parameters of type StringDistanceModifier and TypeMethodDescriptionvoid
DirectSpellChecker.setDistance
(StringDistance distance) Set the string distance metric.void
SpellChecker.setStringDistance
(StringDistance sd) Sets theStringDistance
implementation for thisSpellChecker
instance.Constructors in org.apache.lucene.search.spell with parameters of type StringDistanceModifierConstructorDescriptionSpellChecker
(Directory spellIndex, StringDistance sd) Use the given directory as a spell checker index.SpellChecker
(Directory spellIndex, StringDistance sd, Comparator<SuggestWord> comparator) Use the given directory as a spell checker index with the givenStringDistance
measure and the givenComparator
for sorting the results.