Example usage for org.apache.lucene.analysis.stempel StempelFilter StempelFilter

List of usage examples for org.apache.lucene.analysis.stempel StempelFilter StempelFilter

Introduction

In this page you can find the example usage for org.apache.lucene.analysis.stempel StempelFilter StempelFilter.

Prototype

public StempelFilter(TokenStream in, StempelStemmer stemmer, int minLength) 

Source Link

Document

Create filter using the supplied stemming table.

Usage

From source file:com.jaeksoft.searchlib.analysis.filter.PolishStemFilter.java

License:Open Source License

@Override
public TokenStream create(TokenStream tokenStream) {
    return new StempelFilter(tokenStream, new StempelStemmer(stemTable), minLength);
}