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
66 * Creates a refined soundex instance using a custom mapping. This
87 * Soundex, the return value can be greater than 4.
108 * Encodes an Object using the refined soundex algorithm. This method is
116 * soundex code which corresponds to the String supplied.
124 return soundex((String) pObject);
128 * Encodes a String using the refined soundex algorithm.
132 * @return A Soundex code corresponding to the String supplied
135 return soundex(pString);
155 * Retreives the Refined Soundex code for a given String object.
158 * String to encode using the Refined Soundex algorithm
159 * @return A soundex code for the String supplied
161 public String soundex(String str) {