public final class BulgarianAnalyzer extends StopwordAnalyzerBase
Analyzer
for Bulgarian.
This analyzer implements light-stemming as specified by: Searching Strategies for the Bulgarian Language http://members.unine.ch/jacques.savoy/Papers/BUIR.pdf
Analyzer.GlobalReuseStrategy, Analyzer.PerFieldReuseStrategy, Analyzer.ReuseStrategy, Analyzer.TokenStreamComponents
Modifier and Type | Field and Description |
---|---|
static String |
DEFAULT_STOPWORD_FILE
File containing default Bulgarian stopwords.
|
stopwords
GLOBAL_REUSE_STRATEGY, PER_FIELD_REUSE_STRATEGY
Constructor and Description |
---|
BulgarianAnalyzer()
Builds an analyzer with the default stop words:
DEFAULT_STOPWORD_FILE . |
BulgarianAnalyzer(CharArraySet stopwords)
Builds an analyzer with the given stop words.
|
BulgarianAnalyzer(CharArraySet stopwords,
CharArraySet stemExclusionSet)
Builds an analyzer with the given stop words and a stem exclusion set.
|
BulgarianAnalyzer(Version matchVersion)
Deprecated.
|
BulgarianAnalyzer(Version matchVersion,
CharArraySet stopwords)
Deprecated.
|
BulgarianAnalyzer(Version matchVersion,
CharArraySet stopwords,
CharArraySet stemExclusionSet)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Analyzer.TokenStreamComponents |
createComponents(String fieldName,
Reader reader)
Creates a
Analyzer.TokenStreamComponents
which tokenizes all the text in the provided Reader . |
static CharArraySet |
getDefaultStopSet()
Returns an unmodifiable instance of the default stop-words set.
|
getStopwordSet, loadStopwordSet, loadStopwordSet, loadStopwordSet, loadStopwordSet, loadStopwordSet
close, getOffsetGap, getPositionIncrementGap, getReuseStrategy, getVersion, initReader, setVersion, tokenStream, tokenStream
public static final String DEFAULT_STOPWORD_FILE
public BulgarianAnalyzer()
DEFAULT_STOPWORD_FILE
.@Deprecated public BulgarianAnalyzer(Version matchVersion)
BulgarianAnalyzer()
public BulgarianAnalyzer(CharArraySet stopwords)
@Deprecated public BulgarianAnalyzer(Version matchVersion, CharArraySet stopwords)
BulgarianAnalyzer(CharArraySet)
public BulgarianAnalyzer(CharArraySet stopwords, CharArraySet stemExclusionSet)
SetKeywordMarkerFilter
before BulgarianStemFilter
.@Deprecated public BulgarianAnalyzer(Version matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet)
BulgarianAnalyzer(CharArraySet,CharArraySet)
public static CharArraySet getDefaultStopSet()
public Analyzer.TokenStreamComponents createComponents(String fieldName, Reader reader)
Analyzer.TokenStreamComponents
which tokenizes all the text in the provided Reader
.createComponents
in class Analyzer
Analyzer.TokenStreamComponents
built from an StandardTokenizer
filtered with
StandardFilter
, LowerCaseFilter
, StopFilter
, SetKeywordMarkerFilter
if a stem exclusion set is
provided and BulgarianStemFilter
.Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.