Class SnowballAnalyzer
java.lang.Object
org.apache.lucene.analysis.Analyzer
org.apache.lucene.analysis.snowball.SnowballAnalyzer
- All Implemented Interfaces:
Closeable,AutoCloseable
Deprecated.
(3.1) Use the language-specific analyzer in modules/analysis instead.
This analyzer will be removed in Lucene 5.0
Filters
StandardTokenizer with StandardFilter, LowerCaseFilter, StopFilter and SnowballFilter.
Available stemmers are listed in org.tartarus.snowball.ext. The name of a
stemmer is the part of the class name before "Stemmer", e.g., the stemmer in
EnglishStemmer is named "English".
NOTE: This class uses the same Version
dependent settings as StandardAnalyzer, with the following addition:
- As of 3.1, uses
TurkishLowerCaseFilterfor Turkish language.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.analysis.Analyzer
Analyzer.GlobalReuseStrategy, Analyzer.PerFieldReuseStrategy, Analyzer.ReuseStrategy, Analyzer.TokenStreamComponents -
Field Summary
Fields inherited from class org.apache.lucene.analysis.Analyzer
GLOBAL_REUSE_STRATEGY, PER_FIELD_REUSE_STRATEGY -
Constructor Summary
ConstructorsConstructorDescriptionSnowballAnalyzer(Version matchVersion, String name) Deprecated.Builds the named analyzer with no stop words.SnowballAnalyzer(Version matchVersion, String name, CharArraySet stopWords) Deprecated.Builds the named analyzer with the given stop words. -
Method Summary
Modifier and TypeMethodDescriptioncreateComponents(String fieldName, Reader reader) Deprecated.Constructs aStandardTokenizerfiltered by aStandardFilter, aLowerCaseFilter, aStopFilter, and aSnowballFilterMethods inherited from class org.apache.lucene.analysis.Analyzer
close, getOffsetGap, getPositionIncrementGap, getReuseStrategy, tokenStream, tokenStream
-
Constructor Details
-
SnowballAnalyzer
Deprecated.Builds the named analyzer with no stop words. -
SnowballAnalyzer
Deprecated.Builds the named analyzer with the given stop words.
-
-
Method Details
-
createComponents
Deprecated.Constructs aStandardTokenizerfiltered by aStandardFilter, aLowerCaseFilter, aStopFilter, and aSnowballFilter
-