Apache Lucene.Net 2.4.0 Class Library API

StopAnalyzer Constructor

Builds an analyzer which removes words in ENGLISH_STOP_WORDS.

Overload List

Builds an analyzer which removes words in ENGLISH_STOP_WORDS.

public StopAnalyzer();

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

public StopAnalyzer(Hashtable);

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

public StopAnalyzer(FileInfo);

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

public StopAnalyzer(TextReader);

Builds an analyzer which removes words in the provided array.

public StopAnalyzer(string[]);

See Also

StopAnalyzer Class | Lucene.Net.Analysis Namespace