Example usage for org.apache.lucene.analysis.nl DutchAnalyzer DutchAnalyzer

List of usage examples for org.apache.lucene.analysis.nl DutchAnalyzer DutchAnalyzer

Introduction

In this page you can find the example usage for org.apache.lucene.analysis.nl DutchAnalyzer DutchAnalyzer.

Prototype

public DutchAnalyzer(CharArraySet stopwords, CharArraySet stemExclusionTable,
            CharArrayMap<String> stemOverrideDict) 

Source Link

Usage

From source file:org.elasticsearch.index.analysis.DutchAnalyzerProvider.java

License:Apache License

@Inject
public DutchAnalyzerProvider(Index index, @IndexSettings Settings indexSettings, Environment env,
        @Assisted String name, @Assisted Settings settings) {
    super(index, indexSettings, name, settings);
    analyzer = new DutchAnalyzer(version,
            Analysis.parseStopWords(env, settings, DutchAnalyzer.getDefaultStopSet(), version),
            Analysis.parseStemExclusion(settings, CharArraySet.EMPTY_SET, version));
}