Lucene.Net 1.9.1 Class Library

StandardAnalyzer Constructor

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

Overload List

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

public StandardAnalyzer();

Builds an analyzer with the given stop words.

public StandardAnalyzer(Hashtable);

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

public StandardAnalyzer(FileInfo);

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

public StandardAnalyzer(TextReader);

Builds an analyzer with the given stop words.

public StandardAnalyzer(string[]);

See Also

StandardAnalyzer Class | Lucene.Net.Analysis.Standard Namespace