de.uni_leipzig.cvk.data.cluster
Interface ClusterTableSettings

All Known Implementing Classes:
AggregatePanel, ClusterAlgorithm, ClusterAlgorithmBorderFlow, ClusterAlgorithmKNN, ClusterAlgorithmMCL, Eval, Model

public interface ClusterTableSettings

Settings for column labels and column types of a Table which holds the cluster data.

 

Field Summary
static java.lang.String CLUSTER_COLUMN_ID
          Id to show and identify cluster for decorator
static java.lang.Class CLUSTER_COLUMN_ID_TYPE
          Identifier for data type (int) of id column.
static java.lang.String CLUSTER_COLUMN_NAME
          Identifier for the column in cluster table given back from ClusterAlgorithm.clustering(String[], double, String, String, String, String) method.
static java.lang.Class CLUSTER_COLUMN_NAME_TYPE
          Identifier for data type (TreeSet)of column in cluster table given back from ClusterAlgorithm.clustering(String[], double, String, String, String, String) method.
static java.lang.String CLUSTER_COLUMN_SIZE
          Identifier for size of cluster table, is used to sort the clusters for a non overlapping painting.
static java.lang.Class CLUSTER_COLUMN_SIZE_TYPE
          Identifier for data type (int) of size column.
 

Field Detail

CLUSTER_COLUMN_ID

static final java.lang.String CLUSTER_COLUMN_ID
Id to show and identify cluster for decorator

See Also:
Constant Field Values

CLUSTER_COLUMN_ID_TYPE

static final java.lang.Class CLUSTER_COLUMN_ID_TYPE
Identifier for data type (int) of id column.


CLUSTER_COLUMN_NAME

static final java.lang.String CLUSTER_COLUMN_NAME
Identifier for the column in cluster table given back from ClusterAlgorithm.clustering(String[], double, String, String, String, String) method.

See Also:
Constant Field Values

CLUSTER_COLUMN_NAME_TYPE

static final java.lang.Class CLUSTER_COLUMN_NAME_TYPE
Identifier for data type (TreeSet)of column in cluster table given back from ClusterAlgorithm.clustering(String[], double, String, String, String, String) method.


CLUSTER_COLUMN_SIZE

static final java.lang.String CLUSTER_COLUMN_SIZE
Identifier for size of cluster table, is used to sort the clusters for a non overlapping painting. If this column and values not added to the table, the application will do and should be prefer.

See Also:
Constant Field Values

CLUSTER_COLUMN_SIZE_TYPE

static final java.lang.Class CLUSTER_COLUMN_SIZE_TYPE
Identifier for data type (int) of size column.