Package org.tartarus.snowball.ext

Examples of org.tartarus.snowball.ext.porterStemmer.stem()


*/
public class Stemmer {
  public String stem(String input) {
    PorterStemmer state = new PorterStemmer();
    state.setCurrent(input);
    state.stem();
    return state.getCurrent();
  }
}
View Full Code Here


     * {@inheritDoc}
     */
    public String stem(String token) {
        porterStemmer stemmer = new porterStemmer();
        stemmer.setCurrent(token);
        stemmer.stem();
        return stemmer.getCurrent();
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.