Back to project page sdk-stemmer.
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.
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(); }