Package elki.data.model
Class ClusterModel
- java.lang.Object
-
- elki.data.model.ClusterModel
-
- All Implemented Interfaces:
Model
public final class ClusterModel extends java.lang.Object implements Model
Generic cluster model. Does not supply additional meta information except that it is a cluster. Since there is no meta information, you should use the staticCLUSTER
object.- Since:
- 0.2
- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description static ClusterModel
CLUSTER
Static cluster model that can be shared for all clusters (since the object doesn't include meta information.
-
Constructor Summary
Constructors Constructor Description ClusterModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface elki.data.model.Model
writeToText
-
-
-
-
Field Detail
-
CLUSTER
public static final ClusterModel CLUSTER
Static cluster model that can be shared for all clusters (since the object doesn't include meta information.
-
-