Home | History | Annotate | Download | only in language

Lines Matching defs:soundex

23  * Encodes a string into a Refined Soundex value. A refined soundex code is
24 * optimized for spell checking words. Soundex method originally developed by
61 * Creates a refined soundex instance using a custom mapping. This
82 * Soundex, the return value can be greater than 4.
103 * Encodes an Object using the refined soundex algorithm. This method is
111 * soundex code which corresponds to the String supplied.
119 return soundex((String) pObject);
123 * Encodes a String using the refined soundex algorithm.
127 * @return A Soundex code corresponding to the String supplied
130 return soundex(pString);
150 * Retreives the Refined Soundex code for a given String object.
153 * String to encode using the Refined Soundex algorithm
154 * @return A soundex code for the String supplied
156 public String soundex(String str) {