C# 클래스 Lucene.Net.Analysis.De.GermanAnalyzer

Analyzer for German language. Supports an external list of stopwords (words that will not be indexed at all) and an external list of exclusions (word that will not be stemmed, but indexed). A default set of stopwords is used unless an alternative list is specified, the exclusion list is empty by default.
상속: Lucene.Net.Analysis.Analyzer
파일 보기 프로젝트 열기: apache/lucenenet 1 사용 예제들

공개 메소드들

메소드 설명
CreateComponents ( string fieldName, TextReader reader ) : TokenStreamComponents

Creates org.apache.lucene.analysis.Analyzer.TokenStreamComponents used to tokenize all the text in the provided Reader.

GermanAnalyzer ( LuceneVersion matchVersion ) : Lucene.Net.Analysis

Builds an analyzer with the default stop words: #getDefaultStopSet().

GermanAnalyzer ( LuceneVersion matchVersion, Lucene.Net.Analysis.CharArraySet stopwords ) : Lucene.Net.Analysis

Builds an analyzer with the given stop words

GermanAnalyzer ( LuceneVersion matchVersion, Lucene.Net.Analysis.CharArraySet stopwords, Lucene.Net.Analysis.CharArraySet stemExclusionSet ) : Lucene.Net.Analysis

Builds an analyzer with the given stop words

메소드 상세

CreateComponents() 공개 메소드

Creates org.apache.lucene.analysis.Analyzer.TokenStreamComponents used to tokenize all the text in the provided Reader.
public CreateComponents ( string fieldName, TextReader reader ) : TokenStreamComponents
fieldName string
reader System.IO.TextReader
리턴 TokenStreamComponents

GermanAnalyzer() 공개 메소드

Builds an analyzer with the default stop words: #getDefaultStopSet().
public GermanAnalyzer ( LuceneVersion matchVersion ) : Lucene.Net.Analysis
matchVersion LuceneVersion
리턴 Lucene.Net.Analysis

GermanAnalyzer() 공개 메소드

Builds an analyzer with the given stop words
public GermanAnalyzer ( LuceneVersion matchVersion, Lucene.Net.Analysis.CharArraySet stopwords ) : Lucene.Net.Analysis
matchVersion LuceneVersion /// lucene compatibility version
stopwords Lucene.Net.Analysis.CharArraySet /// a stopword set
리턴 Lucene.Net.Analysis

GermanAnalyzer() 공개 메소드

Builds an analyzer with the given stop words
public GermanAnalyzer ( LuceneVersion matchVersion, Lucene.Net.Analysis.CharArraySet stopwords, Lucene.Net.Analysis.CharArraySet stemExclusionSet ) : Lucene.Net.Analysis
matchVersion LuceneVersion /// lucene compatibility version
stopwords Lucene.Net.Analysis.CharArraySet /// a stopword set
stemExclusionSet Lucene.Net.Analysis.CharArraySet /// a stemming exclusion set
리턴 Lucene.Net.Analysis