public final class ClassicAnalyzer extends StopwordAnalyzerBase
ClassicTokenizer with ClassicFilter, LowerCaseFilter and StopFilter, using a list of
English stop words.
You may specify the Version
compatibility when creating ClassicAnalyzer:
StandardAnalyzer implements Unicode text segmentation,
as specified by UAX#29.Analyzer.GlobalReuseStrategy, Analyzer.PerFieldReuseStrategy, 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 |
|---|
ClassicAnalyzer()
Builds an analyzer with the default stop words (
STOP_WORDS_SET). |
ClassicAnalyzer(CharArraySet stopWords)
Builds an analyzer with the given stop words.
|
ClassicAnalyzer(Reader stopwords)
Builds an analyzer with the stop words from the given reader.
|
ClassicAnalyzer(Version matchVersion)
Deprecated.
|
ClassicAnalyzer(Version matchVersion,
CharArraySet stopWords)
Deprecated.
|
ClassicAnalyzer(Version matchVersion,
Reader stopwords)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
protected Analyzer.TokenStreamComponents |
createComponents(String fieldName,
Reader reader) |
int |
getMaxTokenLength() |
void |
setMaxTokenLength(int length)
Set maximum allowed token length.
|
getStopwordSet, loadStopwordSet, loadStopwordSet, 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 ClassicAnalyzer(CharArraySet stopWords)
stopWords - stop words@Deprecated public ClassicAnalyzer(Version matchVersion, CharArraySet stopWords)
ClassicAnalyzer(CharArraySet)public ClassicAnalyzer()
STOP_WORDS_SET).@Deprecated public ClassicAnalyzer(Version matchVersion)
ClassicAnalyzer()public ClassicAnalyzer(Reader stopwords) throws IOException
stopwords - Reader to read stop words fromIOExceptionWordlistLoader.getWordSet(Reader)@Deprecated public ClassicAnalyzer(Version matchVersion, Reader stopwords) throws IOException
ClassicAnalyzer(CharArraySet)IOExceptionpublic void setMaxTokenLength(int length)
public int getMaxTokenLength()
setMaxTokenLength(int)protected Analyzer.TokenStreamComponents createComponents(String fieldName, Reader reader)
createComponents in class AnalyzerCopyright © 2000-2014 Apache Software Foundation. All Rights Reserved.