public final class DutchAnalyzer extends Analyzer
Analyzer
for Dutch language.
Supports an external list of stopwords (words that will not be indexed at all), an external list of exclusions (word that will not be stemmed, but indexed) and an external list of word-stem pairs that overrule the algorithm (dictionary stemming). A default set of stopwords is used unless an alternative list is specified, but the exclusion list is empty by default.
You may specify the Version
compatibility when creating DutchAnalyzer:
DutchAnalyzer(Version, CharArraySet)
and
DutchAnalyzer(Version, CharArraySet, CharArraySet)
also populate
the default entries for the stem override dictionary
NOTE: This class uses the same Version
dependent settings as StandardAnalyzer
.
Analyzer.GlobalReuseStrategy, Analyzer.PerFieldReuseStrategy, Analyzer.ReuseStrategy, Analyzer.TokenStreamComponents
Modifier and Type | Field and Description |
---|---|
static String |
DEFAULT_STOPWORD_FILE
File containing default Dutch stopwords.
|
GLOBAL_REUSE_STRATEGY, PER_FIELD_REUSE_STRATEGY
Constructor and Description |
---|
DutchAnalyzer()
Builds an analyzer with the default stop words (
getDefaultStopSet() )
and a few default entries for the stem exclusion table. |
DutchAnalyzer(CharArraySet stopwords) |
DutchAnalyzer(CharArraySet stopwords,
CharArraySet stemExclusionTable) |
DutchAnalyzer(CharArraySet stopwords,
CharArraySet stemExclusionTable,
CharArrayMap<String> stemOverrideDict) |
DutchAnalyzer(Version matchVersion)
Deprecated.
Use
DutchAnalyzer() |
DutchAnalyzer(Version matchVersion,
CharArraySet stopwords)
Deprecated.
|
DutchAnalyzer(Version matchVersion,
CharArraySet stopwords,
CharArraySet stemExclusionTable)
Deprecated.
|
DutchAnalyzer(Version matchVersion,
CharArraySet stopwords,
CharArraySet stemExclusionTable,
CharArrayMap<String> stemOverrideDict)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected Analyzer.TokenStreamComponents |
createComponents(String fieldName,
Reader aReader)
Returns a (possibly reused)
TokenStream which tokenizes all the
text in the provided Reader . |
static CharArraySet |
getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.
|
close, getOffsetGap, getPositionIncrementGap, getReuseStrategy, getVersion, initReader, setVersion, tokenStream, tokenStream
public static final String DEFAULT_STOPWORD_FILE
public DutchAnalyzer()
getDefaultStopSet()
)
and a few default entries for the stem exclusion table.@Deprecated public DutchAnalyzer(Version matchVersion)
DutchAnalyzer()
public DutchAnalyzer(CharArraySet stopwords)
@Deprecated public DutchAnalyzer(Version matchVersion, CharArraySet stopwords)
DutchAnalyzer(CharArraySet)
public DutchAnalyzer(CharArraySet stopwords, CharArraySet stemExclusionTable)
@Deprecated public DutchAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionTable)
DutchAnalyzer(CharArraySet,CharArraySet)
public DutchAnalyzer(CharArraySet stopwords, CharArraySet stemExclusionTable, CharArrayMap<String> stemOverrideDict)
@Deprecated public DutchAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionTable, CharArrayMap<String> stemOverrideDict)
DutchAnalyzer(CharArraySet,CharArraySet,CharArrayMap)
public static CharArraySet getDefaultStopSet()
protected Analyzer.TokenStreamComponents createComponents(String fieldName, Reader aReader)
TokenStream
which tokenizes all the
text in the provided Reader
.createComponents
in class Analyzer
TokenStream
built from a StandardTokenizer
filtered with StandardFilter
, LowerCaseFilter
,
StopFilter
, SetKeywordMarkerFilter
if a stem exclusion set is provided,
StemmerOverrideFilter
, and SnowballFilter
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.