C# Class 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 $
Inheritance: Lucene.Net.Analysis.Analyzer
Exibir arquivo Open project: apache/lucenenet Class Usage Examples

Public Methods

Method Description
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.

Method Details

CreateComponents() public method

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
return TokenStreamComponents

CzechAnalyzer() public method

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"/>
return Lucene.Net.Analysis.Core

CzechAnalyzer() public method

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
return Lucene.Net.Analysis.Core

CzechAnalyzer() public method

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
return Lucene.Net.Analysis.Core