- getCorrections(String) - Method in class Corrector
-
Returns a set of proposed corrections for an incorrectly spelled word.
- getCorrections(String) - Method in class FileCorrector
-
Returns a set of proposed corrections for an incorrectly spelled word.
- getCorrections(String) - Method in class Levenshtein
-
Returns a set of proposed corrections for an incorrectly spelled word.
- getCorrections(String) - Method in class SwapCorrector
-
Suggests as corrections any words in the Dictionary (provided when this object is constructed)
that are one swap away from the input word.
- getDeletions(String) - Method in class Levenshtein
-
A deletion is defined as a removing a single character.
- getInsertions(String) - Method in class Levenshtein
-
An insertion is defined as inserting a single character.
- getNumWords() - Method in class Dictionary
-
Returns the number of unique words in this Dictionary.
- getSubstitutions(String) - Method in class Levenshtein
-
A substitution is defined as replacing a single character with another.