public class StandardAnalyzer
extends org.apache.lucene.analysis.StopwordAnalyzerBase
StandardTokenizer with StandardFilter, LowerCaseFilter, StopFilter and ASCIIFoldingFilter.| Modifier and Type | Field and Description |
|---|---|
static int |
DEFAULT_MAX_TOKEN_LENGTH
Default maximum allowed token length
|
static Set<?> |
STOP_WORDS_SET
An unmodifiable set containing some common English words that are usually not
useful for searching.
|
| Constructor and Description |
|---|
StandardAnalyzer(org.apache.lucene.util.Version matchVersion)
Builds an analyzer with the default stop words (
STOP_WORDS_SET). |
StandardAnalyzer(org.apache.lucene.util.Version matchVersion,
Reader stopwords)
Builds an analyzer with the stop words from the given reader.
|
StandardAnalyzer(org.apache.lucene.util.Version matchVersion,
Set<?> stopWords)
Builds an analyzer with the given stop words.
|
| Modifier and Type | Method and Description |
|---|---|
protected org.apache.lucene.analysis.ReusableAnalyzerBase.TokenStreamComponents |
createComponents(String fieldName,
Reader reader) |
int |
getMaxTokenLength() |
void |
setMaxTokenLength(int length)
Set maximum allowed token length.
|
getStopwordSet, loadStopwordSet, loadStopwordSet, loadStopwordSetinitReader, reusableTokenStream, tokenStreampublic static final int DEFAULT_MAX_TOKEN_LENGTH
public static final Set<?> STOP_WORDS_SET
public StandardAnalyzer(org.apache.lucene.util.Version matchVersion,
Set<?> stopWords)
matchVersion - Lucene version to match See abovestopWords - stop wordspublic StandardAnalyzer(org.apache.lucene.util.Version matchVersion)
STOP_WORDS_SET).matchVersion - Lucene version to match See abovepublic StandardAnalyzer(org.apache.lucene.util.Version matchVersion,
Reader stopwords)
throws IOException
matchVersion - Lucene version to match See abovestopwords - Reader to read stop words fromIOExceptionWordlistLoader.getWordSet(Reader, Version)public void setMaxTokenLength(int length)
public int getMaxTokenLength()
setMaxTokenLength(int)Copyright © 2004–2020 Jahia Solutions Group SA. All rights reserved.