OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:soundex
(Results
1 - 3
of
3
) sorted by null
/external/apache-http/src/org/apache/commons/codec/language/
RefinedSoundex.java
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 supplie
156
public String
soundex
(String str) {
method in class:RefinedSoundex
[
all
...]
Soundex.java
23
* Encodes a string into a
Soundex
value.
Soundex
is an encoding used to relate similar names, but can also be used as a
27
* @version $Id:
Soundex
.java,v 1.26 2004/07/07 23:15:24 ggregory Exp $
29
public class
Soundex
implements StringEncoder {
32
* An instance of
Soundex
using the US_ENGLISH_MAPPING mapping.
36
public static final
Soundex
US_ENGLISH = new
Soundex
();
54
* @see
Soundex
#
Soundex
(char[])
85
* The maximum length of a
Soundex
code - Soundex codes are only four characters by definition
249
public String
soundex
(String str) {
method in class:Soundex
[
all
...]
/prebuilt/common/http-client/
commons-codec-1.4.jar
Completed in 1104 milliseconds