com.entopix.maui.stemmers.NoStemmer Maven / Gradle / Ivy
package com.entopix.maui.stemmers;
/**
* If selected in the stemmer option in KEA no stemming is applied.
*
* @author Alyona Medelyan ([email protected])
*
*/
public class NoStemmer extends Stemmer {
/**
*
*/
private static final long serialVersionUID = 1L;
public String stem(String str) {
return str;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy