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(
	string[] stopWords
)
Visual Basic
Public Shared Function MakeStopSet ( _
	stopWords As String() _
) As Hashtable
Visual C++
public:
static Hashtable^ MakeStopSet(
	array<String^>^ stopWords
)

Parameters

stopWords
Type: array<System..::..String>[]()[][]

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

Return Value

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

See Also