Package ar.com.ktulu.dict.strategies

Class Summary
ExactStrategy Does an exact match on the words searched.
Levenshtein Computes the Levenshtein distance between two strings.
LevenshteinStrategy Matches words using Levenshtein distance one.
PrefixStrategy Matches words using the work searched for as a prefix of the words in the database.
REPerl5Strategy Matches words using Perl 5 regular expressions.
REPOSIXStrategy Matches words using POSIX basic regular expressions.
Soundex Compares two strings using the Soundex algorithm.
SoundexStrategy Matches words using the Soundex algorithm.
Strategy Abstract base class for all strategies.
SubStringStrategy Matches words using the work searched for as a substring of the words in the database.
SuffixStrategy Matches words using the work searched for as a suffix of the words in the database.