Example usage for org.apache.lucene.analysis.ko KoreanPartOfSpeechStopFilter KoreanPartOfSpeechStopFilter

List of usage examples for org.apache.lucene.analysis.ko KoreanPartOfSpeechStopFilter KoreanPartOfSpeechStopFilter

Introduction

In this page you can find the example usage for org.apache.lucene.analysis.ko KoreanPartOfSpeechStopFilter KoreanPartOfSpeechStopFilter.

Prototype

public KoreanPartOfSpeechStopFilter(TokenStream input, Set<POS.Tag> stopTags) 

Source Link

Document

Create a new KoreanPartOfSpeechStopFilter .

Usage

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

License:Apache License

@Override
public TokenStream create(TokenStream tokenStream) {
    return new KoreanPartOfSpeechStopFilter(tokenStream, stopTags);
}