Package org.apache.lucene.analysis.ko
Class KoreanPartOfSpeechStopFilterFactory
- java.lang.Object
-
- org.apache.lucene.analysis.AbstractAnalysisFactory
-
- org.apache.lucene.analysis.TokenFilterFactory
-
- org.apache.lucene.analysis.ko.KoreanPartOfSpeechStopFilterFactory
-
public class KoreanPartOfSpeechStopFilterFactory extends TokenFilterFactory
Factory forKoreanPartOfSpeechStopFilter
.<fieldType name="text_ko" class="solr.TextField"> <analyzer> <tokenizer class="solr.KoreanTokenizerFactory"/> <filter class="solr.KoreanPartOfSpeechStopFilterFactory" tags="E,J"/> </analyzer> </fieldType>
Supports the following attributes:
- tags: List of stop tags. if not specified,
KoreanPartOfSpeechStopFilter.DEFAULT_STOP_TAGS
is used.
- Since:
- 7.4.0
- tags: List of stop tags. if not specified,
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
NAME
SPI nameprivate java.util.Set<POS.Tag>
stopTags
-
Fields inherited from class org.apache.lucene.analysis.AbstractAnalysisFactory
LUCENE_MATCH_VERSION_PARAM, luceneMatchVersion
-
-
Constructor Summary
Constructors Constructor Description KoreanPartOfSpeechStopFilterFactory()
Default ctor for compatibility with SPIKoreanPartOfSpeechStopFilterFactory(java.util.Map<java.lang.String,java.lang.String> args)
Creates a new KoreanPartOfSpeechStopFilterFactory
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TokenStream
create(TokenStream stream)
Transform the specified input TokenStream-
Methods inherited from class org.apache.lucene.analysis.TokenFilterFactory
availableTokenFilters, findSPIName, forName, lookupClass, normalize, reloadTokenFilters
-
Methods inherited from class org.apache.lucene.analysis.AbstractAnalysisFactory
defaultCtorException, get, get, get, get, get, getBoolean, getChar, getClassArg, getFloat, getInt, getLines, getLuceneMatchVersion, getOriginalArgs, getPattern, getSet, getSnowballWordSet, getWordSet, isExplicitLuceneMatchVersion, require, require, require, requireBoolean, requireChar, requireFloat, requireInt, setExplicitLuceneMatchVersion, splitAt, splitFileNames
-
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
SPI name- See Also:
- Constant Field Values
-
stopTags
private java.util.Set<POS.Tag> stopTags
-
-
Constructor Detail
-
KoreanPartOfSpeechStopFilterFactory
public KoreanPartOfSpeechStopFilterFactory(java.util.Map<java.lang.String,java.lang.String> args)
Creates a new KoreanPartOfSpeechStopFilterFactory
-
KoreanPartOfSpeechStopFilterFactory
public KoreanPartOfSpeechStopFilterFactory()
Default ctor for compatibility with SPI
-
-
Method Detail
-
create
public TokenStream create(TokenStream stream)
Description copied from class:TokenFilterFactory
Transform the specified input TokenStream- Specified by:
create
in classTokenFilterFactory
-
-