public final class CzechAnalyzer
extends org.apache.lucene.analysis.ReusableAnalyzerBase
Analyzer for Czech language.
Supports an external list of stopwords (words that will not be indexed at all). A default set of stopwords is used unless an alternative list is specified.
You must specify the required Version compatibility when creating
CzechAnalyzer:
CzechStemFilter
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String[] |
CZECH_STOP_WORDS
Deprecated.
use
getDefaultStopSet() instead |
static java.lang.String |
DEFAULT_STOPWORD_FILE
File containing default Czech stopwords.
|
| Constructor and Description |
|---|
CzechAnalyzer(org.apache.lucene.util.Version matchVersion)
Builds an analyzer with the default stop words (
getDefaultStopSet()). |
CzechAnalyzer(org.apache.lucene.util.Version matchVersion,
java.io.File stopwords)
Deprecated.
use
CzechAnalyzer(Version, Set) instead |
CzechAnalyzer(org.apache.lucene.util.Version matchVersion,
java.util.HashSet<?> stopwords)
Deprecated.
use
CzechAnalyzer(Version, Set) instead |
CzechAnalyzer(org.apache.lucene.util.Version matchVersion,
java.util.Set<?> stopwords)
Builds an analyzer with the given stop words.
|
CzechAnalyzer(org.apache.lucene.util.Version matchVersion,
java.util.Set<?> stopwords,
java.util.Set<?> stemExclusionTable)
Builds an analyzer with the given stop words and a set of work to be
excluded from the
CzechStemFilter. |
CzechAnalyzer(org.apache.lucene.util.Version matchVersion,
java.lang.String... stopwords)
Deprecated.
use
CzechAnalyzer(Version, Set) instead |
| Modifier and Type | Method and Description |
|---|---|
protected org.apache.lucene.analysis.ReusableAnalyzerBase.TokenStreamComponents |
createComponents(java.lang.String fieldName,
java.io.Reader reader)
Creates
ReusableAnalyzerBase.TokenStreamComponents
used to tokenize all the text in the provided Reader. |
static java.util.Set<?> |
getDefaultStopSet()
Returns a set of default Czech-stopwords
|
void |
loadStopWords(java.io.InputStream wordfile,
java.lang.String encoding)
Deprecated.
use
WordlistLoader.getWordSet(Reader, String, Version)
and CzechAnalyzer(Version, Set) instead |
initReader, reusableTokenStream, tokenStream@Deprecated public static final java.lang.String[] CZECH_STOP_WORDS
getDefaultStopSet() insteadpublic static final java.lang.String DEFAULT_STOPWORD_FILE
public CzechAnalyzer(org.apache.lucene.util.Version matchVersion)
getDefaultStopSet()).matchVersion - Lucene version to match See
abovepublic CzechAnalyzer(org.apache.lucene.util.Version matchVersion,
java.util.Set<?> stopwords)
matchVersion - Lucene version to match See
abovestopwords - a stopword setpublic CzechAnalyzer(org.apache.lucene.util.Version matchVersion,
java.util.Set<?> stopwords,
java.util.Set<?> stemExclusionTable)
CzechStemFilter.matchVersion - Lucene version to match See
abovestopwords - a stopword setstemExclusionTable - a stemming exclusion set@Deprecated
public CzechAnalyzer(org.apache.lucene.util.Version matchVersion,
java.lang.String... stopwords)
CzechAnalyzer(Version, Set) insteadmatchVersion - Lucene version to match See
abovestopwords - a stopword set@Deprecated
public CzechAnalyzer(org.apache.lucene.util.Version matchVersion,
java.util.HashSet<?> stopwords)
CzechAnalyzer(Version, Set) insteadmatchVersion - Lucene version to match See
abovestopwords - a stopword set@Deprecated
public CzechAnalyzer(org.apache.lucene.util.Version matchVersion,
java.io.File stopwords)
throws java.io.IOException
CzechAnalyzer(Version, Set) insteadmatchVersion - Lucene version to match See
abovestopwords - a file containing stopwordsjava.io.IOExceptionpublic static final java.util.Set<?> getDefaultStopSet()
@Deprecated
public void loadStopWords(java.io.InputStream wordfile,
java.lang.String encoding)
WordlistLoader.getWordSet(Reader, String, Version)
and CzechAnalyzer(Version, Set) insteadwordfile - File containing the wordlistencoding - Encoding used (win-1250, iso-8859-2, ...), null for default system encodingprotected org.apache.lucene.analysis.ReusableAnalyzerBase.TokenStreamComponents createComponents(java.lang.String fieldName,
java.io.Reader reader)
ReusableAnalyzerBase.TokenStreamComponents
used to tokenize all the text in the provided Reader.createComponents in class org.apache.lucene.analysis.ReusableAnalyzerBaseReusableAnalyzerBase.TokenStreamComponents
built from a StandardTokenizer filtered with
StandardFilter, LowerCaseFilter, StopFilter
, and CzechStemFilter (only if version is >= LUCENE_31). If
a version is >= LUCENE_31 and a stem exclusion set is provided via
CzechAnalyzer(Version, Set, Set) a
KeywordMarkerFilter is added before
CzechStemFilter.Copyright © 2000-2022 Apache Software Foundation. All Rights Reserved.