All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.simmetrics.simplifiers.RefinedSoundex Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version
package org.simmetrics.simplifiers;

import static org.apache.commons.codec.language.RefinedSoundex.US_ENGLISH;

/**
 * Encodes a string into a Refined Soundex value. A refined soundex code is
 * optimized for spell checking words. Soundex method originally developed by
 * Margaret Odell and Robert Russell.
 *
 * 

* This class is immutable and thread-safe. *

* * @see org.apache.commons.codec.language.RefinedSoundex */ public class RefinedSoundex implements Simplifier { @Override public String simplify(String input) { return US_ENGLISH.soundex(input); } @Override public String toString() { return "RefinedSoundex"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy