C# 클래스 Lucene.Net.Analysis.Cz.CzechAnalyzer

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, the exclusion list is empty by default. @author Lukas Zapletal [[email protected]] @version $Id: CzechAnalyzer.java,v 1.2 2003/01/22 20:54:47 ehatcher Exp $
상속: 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.

CzechAnalyzer ( LuceneVersion matchVersion ) : Lucene.Net.Analysis.Core

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

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

Builds an analyzer with the given stop words.

CzechAnalyzer ( LuceneVersion matchVersion, Lucene.Net.Analysis.CharArraySet stopwords, Lucene.Net.Analysis.CharArraySet stemExclusionTable ) : Lucene.Net.Analysis.Core

Builds an analyzer with the given stop words and a set of work to be excluded from the CzechStemFilter.

메소드 상세

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 TextReader
리턴 TokenStreamComponents

CzechAnalyzer() 공개 메소드

Builds an analyzer with the default stop words (#getDefaultStopSet()).
public CzechAnalyzer ( LuceneVersion matchVersion ) : Lucene.Net.Analysis.Core
matchVersion LuceneVersion Lucene version to match See /// above"/>
리턴 Lucene.Net.Analysis.Core

CzechAnalyzer() 공개 메소드

Builds an analyzer with the given stop words.
public CzechAnalyzer ( LuceneVersion matchVersion, Lucene.Net.Analysis.CharArraySet stopwords ) : Lucene.Net.Analysis.Core
matchVersion LuceneVersion Lucene version to match See /// above"/>
stopwords Lucene.Net.Analysis.CharArraySet a stopword set
리턴 Lucene.Net.Analysis.Core

CzechAnalyzer() 공개 메소드

Builds an analyzer with the given stop words and a set of work to be excluded from the CzechStemFilter.
public CzechAnalyzer ( LuceneVersion matchVersion, Lucene.Net.Analysis.CharArraySet stopwords, Lucene.Net.Analysis.CharArraySet stemExclusionTable ) : Lucene.Net.Analysis.Core
matchVersion LuceneVersion Lucene version to match See /// above"/>
stopwords Lucene.Net.Analysis.CharArraySet a stopword set
stemExclusionTable Lucene.Net.Analysis.CharArraySet a stemming exclusion set
리턴 Lucene.Net.Analysis.Core