C# Class Lucene.Net.Analysis.Standard.UAX29URLEmailAnalyzer

Filters org.apache.lucene.analysis.standard.UAX29URLEmailTokenizer with StandardFilter, LowerCaseFilter and StopFilter, using a list of English stop words.

You must specify the required org.apache.lucene.util.Version compatibility when creating UAX29URLEmailAnalyzer

Datei anzeigen Open project: apache/lucenenet Class Usage Examples

Public Properties

Property Type Description
STOP_WORDS_SET CharArraySet

Public Methods

Method Description
CreateComponents ( string fieldName, TextReader reader ) : TokenStreamComponents
UAX29URLEmailAnalyzer ( LuceneVersion matchVersion ) : Lucene.Net.Analysis.Core

Builds an analyzer with the default stop words ({@link #STOP_WORDS_SET}).

UAX29URLEmailAnalyzer ( LuceneVersion matchVersion, CharArraySet stopWords ) : Lucene.Net.Analysis.Core

Builds an analyzer with the given stop words.

UAX29URLEmailAnalyzer ( LuceneVersion matchVersion, TextReader stopwords ) : Lucene.Net.Analysis.Core

Builds an analyzer with the stop words from the given reader.

Method Details

CreateComponents() public method

public CreateComponents ( string fieldName, TextReader reader ) : TokenStreamComponents
fieldName string
reader System.IO.TextReader
return TokenStreamComponents

UAX29URLEmailAnalyzer() public method

Builds an analyzer with the default stop words ({@link #STOP_WORDS_SET}).
public UAX29URLEmailAnalyzer ( LuceneVersion matchVersion ) : Lucene.Net.Analysis.Core
matchVersion LuceneVersion Lucene version to match See {@link /// above}
return Lucene.Net.Analysis.Core

UAX29URLEmailAnalyzer() public method

Builds an analyzer with the given stop words.
public UAX29URLEmailAnalyzer ( LuceneVersion matchVersion, CharArraySet stopWords ) : Lucene.Net.Analysis.Core
matchVersion LuceneVersion Lucene version to match See {@link /// above}
stopWords CharArraySet stop words
return Lucene.Net.Analysis.Core

UAX29URLEmailAnalyzer() public method

Builds an analyzer with the stop words from the given reader.
public UAX29URLEmailAnalyzer ( LuceneVersion matchVersion, TextReader stopwords ) : Lucene.Net.Analysis.Core
matchVersion LuceneVersion Lucene version to match See {@link /// above}
stopwords System.IO.TextReader Reader to read stop words from
return Lucene.Net.Analysis.Core

Property Details

STOP_WORDS_SET public_oe static_oe property

An unmodifiable set containing some common English words that are usually not useful for searching.
public static CharArraySet STOP_WORDS_SET
return CharArraySet