Android Open Source - sdk-soundex Soundex Interface






From Project

Back to project page sdk-soundex.

License

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.

Java Source Code

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();
}




Java Source Code List

org.silpa.soundex.SoundexEditText.java
org.silpa.soundex.SoundexInterface.java
org.silpa.soundex.SoundexTextView.java
org.silpa.soundex.Soundex.java