Lucene.Net.Analysis.StopFilter.StopFilter C# (CSharp) Method

StopFilter() public method

Constructs a filter which removes words from the input TokenStream that are named in the Set.
public StopFilter ( bool enablePositionIncrements, TokenStream @in, ISet stopWords ) : System
enablePositionIncrements bool true if token positions should record the removed stop words
@in TokenStream
stopWords ISet A Set of strings or char[] or any other ToString()-able set representing the stopwords
return System
		public StopFilter(bool enablePositionIncrements, TokenStream @in, ISet<string> stopWords)
			: this(enablePositionIncrements, @in, stopWords, false)
		{ }
		

Same methods

StopFilter::StopFilter ( bool enablePositionIncrements, TokenStream input, ISet stopWords, bool ignoreCase ) : System