Initializes a new Cluster instance.

Namespace:  Endeca.Data
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
public Cluster(
	string dimensionName,
	long recordCount,
	IList<string> terms
)
Visual Basic (Declaration)
Public Sub New ( _
	dimensionName As String, _
	recordCount As Long, _
	terms As IList(Of String) _
)
Visual C++
public:
Cluster(
	String^ dimensionName, 
	long long recordCount, 
	IList<String^>^ terms
)

Parameters

dimensionName
Type: System..::.String
The name of the dimension that the cluster terms (i.e. dimension values) belong to
recordCount
Type: System..::.Int64
The estimated number of records covered by each particular cluster.
terms
Type: System.Collections.Generic..::.IList<(Of <(String>)>)
The list of terms that comprise the cluster.

See Also