Back to project page sdk-soundex.
The source code is released under:
GNU Lesser General Public License
If you think the Android project sdk-soundex listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.silpa.soundex; // ww w . j a va 2s . c om /** * Created by sujith on 17/6/14. */ public interface SoundexInterface { /** * This function is used to get soundex code from a given view * * @return soundex code */ public String getSoundexCode(); /** * This function is used to get compare result * * @return int compare value * 0 if both strings are same * 1 if strings sound phonetically same * 2 if strings are phonetically not same */ public int getCompareValue(); }