com.nicholasding.search.lemmatization.WordNetReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solr-lemmatizer Show documentation
Show all versions of solr-lemmatizer Show documentation
A TokenFilter that applies lemmatization to lemmatize English words.
The newest version!
package com.nicholasding.search.lemmatization;
import java.util.Collection;
/**
* @author Nicholas Ding ([email protected]) on 2016-06-29
*/
public interface WordNetReader {
/**
* @return exception list for four categories
*/
ExceptionList readExceptionList();
/**
* @return all the lemmas
*/
Collection readLemmas();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy