Lucene.Net 1.9.1 Class Library

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 Hashtable.

public StopFilter(TokenStream,Hashtable);

Constructs a filter which removes words from the input TokenStream that are named in the Hashtable. If ignoreCase is true, all keys in the stopTable should already be lowercased.

public StopFilter(TokenStream,Hashtable,bool);

Construct a token stream filtering the given input.

public StopFilter(TokenStream,Hashtable,bool,int);

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,int);

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