Builds a Set from an array of stop words, appropriate for passing into the StopFilter constructor. This permits this stopWords construction to be cached once when an Analyzer is constructed.

Namespace: Lucene.Net.Analysis
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public static Hashtable MakeStopSet(
	IList stopWords
)
Visual Basic
Public Shared Function MakeStopSet ( _
	stopWords As IList _
) As Hashtable
Visual C++
public:
static Hashtable^ MakeStopSet(
	IList^ stopWords
)

Parameters

stopWords
Type: System.Collections..::..IList

[Missing <param name="stopWords"/> documentation for "M:Lucene.Net.Analysis.StopFilter.MakeStopSet(System.Collections.IList)"]

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Analysis.StopFilter.MakeStopSet(System.Collections.IList)"]

See Also