URL.openConnection() instead.
Please visit this webpage
for further details.@Deprecated public class RefinedSoundex extends java.lang.Object implements StringEncoder
| Modifier and Type | Field and Description |
|---|---|
static RefinedSoundex |
US_ENGLISH
Deprecated.
This static variable contains an instance of the RefinedSoundex using
the US_ENGLISH mapping.
|
static char[] |
US_ENGLISH_MAPPING
Deprecated.
RefinedSoundex is *refined* for a number of reasons one being that the
mappings have been altered.
|
| Constructor and Description |
|---|
RefinedSoundex()
Deprecated.
Creates an instance of the RefinedSoundex object using the default US
English mapping.
|
RefinedSoundex(char[] mapping)
Deprecated.
Creates a refined soundex instance using a custom mapping.
|
| Modifier and Type | Method and Description |
|---|---|
int |
difference(java.lang.String s1,
java.lang.String s2)
Deprecated.
Returns the number of characters in the two encoded Strings that are the
same.
|
java.lang.Object |
encode(java.lang.Object pObject)
Deprecated.
Encodes an Object using the refined soundex algorithm.
|
java.lang.String |
encode(java.lang.String pString)
Deprecated.
Encodes a String using the refined soundex algorithm.
|
java.lang.String |
soundex(java.lang.String str)
Deprecated.
Retreives the Refined Soundex code for a given String object.
|
public static final RefinedSoundex US_ENGLISH
public static final char[] US_ENGLISH_MAPPING
public RefinedSoundex()
public RefinedSoundex(char[] mapping)
mapping - Mapping array to use when finding the corresponding code for
a given characterpublic int difference(java.lang.String s1,
java.lang.String s2)
throws EncoderException
s1 - A String that will be encoded and compared.s2 - A String that will be encoded and compared.EncoderException - if an error occurs encoding one of the stringspublic java.lang.Object encode(java.lang.Object pObject)
throws EncoderException
encode in interface EncoderpObject - Object to encodeEncoderException - if the parameter supplied is not of type java.lang.Stringpublic java.lang.String encode(java.lang.String pString)
encode in interface StringEncoderpString - A String object to encodepublic java.lang.String soundex(java.lang.String str)
str - String to encode using the Refined Soundex algorithm