List of usage examples for org.apache.lucene.analysis.ko KoreanPartOfSpeechStopFilter KoreanPartOfSpeechStopFilter
public KoreanPartOfSpeechStopFilter(TokenStream input, Set<POS.Tag> stopTags)
From source file:org.elasticsearch.index.analysis.NoriPartOfSpeechStopFilterFactory.java
License:Apache License
@Override public TokenStream create(TokenStream tokenStream) { return new KoreanPartOfSpeechStopFilter(tokenStream, stopTags); }