Class BrazilianAnalyzer
Analyzer for Brazilian Portuguese language.
Supports an external list of stopwords (words that will not be indexed at all) and an external list of exclusions (words that will not be stemmed, but indexed).
NOTE: This class uses the same LuceneVersion dependent settings as StandardAnalyzer.
Inherited Members
Assembly: Lucene.Net.Analysis.Common.dll
Syntax
[Serializable]
public sealed class BrazilianAnalyzer : StopwordAnalyzerBase, IDisposable
Constructors
Name | Description |
---|---|
BrazilianAnalyzer(LuceneVersion) | Builds an analyzer with the default stop words (DefaultStopSet). |
BrazilianAnalyzer(LuceneVersion, CharArraySet) | Builds an analyzer with the given stop words |
BrazilianAnalyzer(LuceneVersion, CharArraySet, CharArraySet) | Builds an analyzer with the given stop words and stemming exclusion words |
Fields
Name | Description |
---|---|
DEFAULT_STOPWORD_FILE | File containing default Brazilian Portuguese stopwords. |
Properties
Name | Description |
---|---|
DefaultStopSet | Returns an unmodifiable instance of the default stop-words set. |
Methods
Name | Description |
---|---|
CreateComponents(String, TextReader) | Creates TokenStreamComponents used to tokenize all the text in the provided System.IO.TextReader. |