Android Open Source - sdk-stemmer Stemmer Interface






From Project

Back to project page sdk-stemmer.

License

The source code is released under:

GNU Lesser General Public License

If you think the Android project sdk-stemmer 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.stemmer;
//  w  w  w.ja  v a2 s  .c  om
import java.util.Map;

/**
 * Created by sujith on 13/6/14.
 */
public interface StemmerInterface {

    /**
     * This function is used to get all stemmed words
     * in an array
     *
     * @return string array
     */
    public String[] getStemWordsAsArray();

    /**
     * This function is used to get all stemmed words
     * as a map
     *
     * @return map<String, String>
     */
    public Map<String, String> getStemWordsAsMap();

    /**
     * This function gives name of the module
     *
     * @return name of module
     */
    public String getModuleName();

    /**
     * This function gives a brief description of the module
     *
     * @return brief information regarding the module
     */
    public String getModuleInformation();
}




Java Source Code List

org.silpa.stemmer.StemmerEditText.java
org.silpa.stemmer.StemmerInterface.java
org.silpa.stemmer.StemmerTextView.java
org.silpa.stemmer.Stemmer.java