Uses of Enum
org.languagetool.rules.spelling.symspell.implementation.SymSpell.Verbosity
Packages that use SymSpell.Verbosity
Package
Description
-
Uses of SymSpell.Verbosity in org.languagetool.rules.spelling
Fields in org.languagetool.rules.spelling declared as SymSpell.Verbosity -
Uses of SymSpell.Verbosity in org.languagetool.rules.spelling.symspell.implementation
Subclasses with type arguments of type SymSpell.Verbosity in org.languagetool.rules.spelling.symspell.implementationMethods in org.languagetool.rules.spelling.symspell.implementation that return SymSpell.VerbosityModifier and TypeMethodDescriptionstatic SymSpell.VerbosityReturns the enum constant of this type with the specified name.static SymSpell.Verbosity[]SymSpell.Verbosity.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.languagetool.rules.spelling.symspell.implementation with parameters of type SymSpell.VerbosityModifier and TypeMethodDescriptionSymSpell.lookup(String input, SymSpell.Verbosity verbosity) Find suggested spellings for a given input word, using the maximum edit distance specified during construction of the SymSpell.SymSpell dictionary. The word being spell checked. The value controlling the quantity/closeness of the retuned suggestions.A List of SymSpell.SuggestItem object representing suggested correct spellings for the input word, sorted by edit distance, and secondarily by count frequency. SymSpell.lookup(String input, SymSpell.Verbosity verbosity, int maxEditDistance) Find suggested spellings for a given input word. The word being spell checked. The value controlling the quantity/closeness of the retuned suggestions. The maximum edit distance between input and suggested words.A List of SymSpell.SuggestItem object representing suggested correct spellings for the input word, sorted by edit distance, and secondarily by count frequency.