public class MatchRatingApproachEncoder extends Object implements StringEncoder
| Constructor and Description | 
|---|
| MatchRatingApproachEncoder() | 
| Modifier and Type | Method and Description | 
|---|---|
| Object | encode(Object pObject)Encodes an Object using the Match Rating Approach algorithm. | 
| String | encode(String name)Encodes a String using the Match Rating Approach (MRA) algorithm. | 
| boolean | isEncodeEquals(String name1,
              String name2)Determines if two names are homophonous via Match Rating Approach (MRA) algorithm. | 
public final Object encode(Object pObject) throws EncoderException
encode in interface EncoderpObject - Object to encodeEncoderException - if the parameter supplied is not of type java.lang.Stringpublic final String encode(String name)
encode in interface StringEncodername - String object to encodepublic boolean isEncodeEquals(String name1, String name2)
encode(String).name1 - First of the 2 strings (names) to comparename2 - Second of the 2 names to comparetrue if the encodings are identical false otherwise.