Apache Lucene.Net 2.4.0 Class Library API

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();

public StandardAnalyzer(bool);

Builds an analyzer with the given stop words.

public StandardAnalyzer(Hashtable);

 

public StandardAnalyzer(Hashtable,bool);

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

public StandardAnalyzer(FileInfo);

 

public StandardAnalyzer(FileInfo,bool);

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

public StandardAnalyzer(TextReader);

 

public StandardAnalyzer(TextReader,bool);

Builds an analyzer with the given stop words.

public StandardAnalyzer(string[]);

public StandardAnalyzer(string[],bool);

See Also

StandardAnalyzer Class | Lucene.Net.Analysis.Standard Namespace