Apache Lucene.Net 2.1 Class Library API

StopFilter Constructor

Construct a token stream filtering the given input.

Overload List

Constructs a filter which removes words from the input TokenStream that are named in the Set. It is crucial that an efficient Set implementation is used for maximum performance.

public StopFilter(TokenStream,Hashtable);

Construct a token stream filtering the given input.

public StopFilter(TokenStream,Hashtable,bool);

Construct a token stream filtering the given input.

public StopFilter(TokenStream,string[]);

Constructs a filter which removes words from the input TokenStream that are named in the array of words.

public StopFilter(TokenStream,string[],bool);

See Also

StopFilter Class | Lucene.Net.Analysis Namespace