public final class StandardAnalyzer extends StopwordAnalyzerBase
StandardTokenizer with StandardFilter, LowerCaseFilter and StopFilter, using a list of
English stop words.Analyzer.ReuseStrategy, Analyzer.TokenStreamComponents| Modifier and Type | Field and Description |
|---|---|
static int |
DEFAULT_MAX_TOKEN_LENGTH
Default maximum allowed token length
|
static CharArraySet |
STOP_WORDS_SET
An unmodifiable set containing some common English words that are usually not
useful for searching.
|
stopwordsGLOBAL_REUSE_STRATEGY, PER_FIELD_REUSE_STRATEGY| Constructor and Description |
|---|
StandardAnalyzer()
Builds an analyzer with the default stop words (
STOP_WORDS_SET). |
StandardAnalyzer(CharArraySet stopWords)
Builds an analyzer with the given stop words.
|
StandardAnalyzer(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 a new
Analyzer.TokenStreamComponents instance for this analyzer. |
int |
getMaxTokenLength() |
void |
setMaxTokenLength(int length)
Set maximum allowed token length.
|
getStopwordSet, loadStopwordSet, loadStopwordSet, loadStopwordSetclose, getOffsetGap, getPositionIncrementGap, getReuseStrategy, getVersion, initReader, setVersion, tokenStream, tokenStreampublic static final int DEFAULT_MAX_TOKEN_LENGTH
public static final CharArraySet STOP_WORDS_SET
public StandardAnalyzer(CharArraySet stopWords)
stopWords - stop wordspublic StandardAnalyzer()
STOP_WORDS_SET).public StandardAnalyzer(Reader stopwords) throws IOException
stopwords - Reader to read stop words fromIOExceptionWordlistLoader.getWordSet(Reader)public void setMaxTokenLength(int length)
public int getMaxTokenLength()
setMaxTokenLength(int)protected Analyzer.TokenStreamComponents createComponents(String fieldName)
AnalyzerAnalyzer.TokenStreamComponents instance for this analyzer.createComponents in class AnalyzerfieldName - the name of the fields content passed to the
Analyzer.TokenStreamComponents sink as a readerAnalyzer.TokenStreamComponents for this analyzer.Copyright © 2000–2015 The Apache Software Foundation. All rights reserved.