Example usage for org.apache.lucene.analysis.bn BengaliNormalizationFilter BengaliNormalizationFilter

List of usage examples for org.apache.lucene.analysis.bn BengaliNormalizationFilter BengaliNormalizationFilter

Introduction

In this page you can find the example usage for org.apache.lucene.analysis.bn BengaliNormalizationFilter BengaliNormalizationFilter.

Prototype

public BengaliNormalizationFilter(TokenStream input) 

Source Link

Usage

From source file:org.elasticsearch.analysis.common.BengaliNormalizationFilterFactory.java

License:Apache License

@Override
public TokenStream create(TokenStream tokenStream) {
    return new BengaliNormalizationFilter(tokenStream);
}