List of usage examples for org.apache.lucene.analysis.hunspell HunspellStemFilter HunspellStemFilter
public HunspellStemFilter(TokenStream input, Dictionary dictionary, boolean dedup, boolean longestOnly)
From source file:org.elasticsearch.index.analysis.HunspellTokenFilterFactory.java
License:Apache License
@Override public TokenStream create(TokenStream tokenStream) { return new HunspellStemFilter(tokenStream, dictionary, dedup, recursionLevel); }