- Type Parameters:
ClusterType
- The type of data stored in the cluster.
- All Superinterfaces:
- java.lang.Cloneable, CloneableSerializable, java.io.Serializable
- All Known Subinterfaces:
- ClusterHierarchyNode<DataType,ClusterType>
- All Known Implementing Classes:
- AbstractClusterHierarchyNode, AgglomerativeClusterer.HierarchyNode, BinaryClusterHierarchyNode, CentroidCluster, DefaultCluster, DefaultClusterHierarchyNode, DirichletProcessMixtureModel.DPMMCluster, GaussianCluster, MiniBatchCentroidCluster, NormalizedCentroidCluster
@CodeReview(reviewer="Kevin R. Dixon",
date="2008-07-22",
changesNeeded=false,
comments="Interface looks fine.")
public interface Cluster<ClusterType>
extends CloneableSerializable
The Cluster interface defines the general functionality of a cluster, which
is just the ability to get the members of the cluster.
- Since:
- 1.0
- Author:
- Justin Basilico, Kevin R. Dixon