public final class StopAnalyzer extends StopwordAnalyzerBase
Analyzer.ReuseStrategy, Analyzer.TokenStreamComponents
stopwords
GLOBAL_REUSE_STRATEGY, PER_FIELD_REUSE_STRATEGY
Constructor and Description |
---|
StopAnalyzer(CharArraySet stopWords)
Builds an analyzer with the stop words from the given set.
|
StopAnalyzer(Path stopwordsFile)
Builds an analyzer with the stop words from the given path.
|
StopAnalyzer(Reader stopwords)
Builds an analyzer with the stop words from the given reader.
|
Modifier and Type | Method and Description |
---|---|
protected Analyzer.TokenStreamComponents |
createComponents(String fieldName)
Creates
Analyzer.TokenStreamComponents
used to tokenize all the text in the provided Reader . |
protected TokenStream |
normalize(String fieldName,
TokenStream in) |
getStopwordSet, loadStopwordSet, loadStopwordSet, loadStopwordSet
attributeFactory, close, getOffsetGap, getPositionIncrementGap, getReuseStrategy, getVersion, initReader, initReaderForNormalization, normalize, setVersion, tokenStream, tokenStream
public StopAnalyzer(CharArraySet stopWords)
stopWords
- Set of stop wordspublic StopAnalyzer(Path stopwordsFile) throws IOException
stopwordsFile
- File to load stop words fromIOException
WordlistLoader.getWordSet(Reader)
public StopAnalyzer(Reader stopwords) throws IOException
stopwords
- Reader to load stop words fromIOException
WordlistLoader.getWordSet(Reader)
protected Analyzer.TokenStreamComponents createComponents(String fieldName)
Analyzer.TokenStreamComponents
used to tokenize all the text in the provided Reader
.createComponents
in class Analyzer
Analyzer.TokenStreamComponents
built from a LetterTokenizer
filtered with
StopFilter
protected TokenStream normalize(String fieldName, TokenStream in)
Copyright © 2000-2020 Apache Software Foundation. All Rights Reserved.