Package elki.data.model
Interface Model
-
- All Known Subinterfaces:
PrototypeModel<V>
- All Known Implementing Classes:
BiclusterModel
,BiclusterWithInversionsModel
,ClusterModel
,CoreObjectsModel
,CorrelationAnalysisSolution
,CorrelationModel
,DendrogramModel
,DimensionModel
,EMModel
,GeneratorModel
,KMeansModel
,LinearEquationModel
,MeanModel
,MedoidModel
,OPTICSModel
,PrototypeDendrogramModel
,SimplePrototypeModel
,SubspaceModel
public interface Model
Base interface for Model classes.- Since:
- 0.2
- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description static SimpleTypeInformation<Model>
TYPE
Type information, for relation selection.
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
writeToText(TextWriterStream out, java.lang.String label)
Default implementation ofTextWriteable.writeToText(elki.result.textwriter.TextWriterStream, java.lang.String)
.
-
-
-
Field Detail
-
TYPE
static final SimpleTypeInformation<Model> TYPE
Type information, for relation selection.
-
-
Method Detail
-
writeToText
default void writeToText(TextWriterStream out, java.lang.String label)
Default implementation ofTextWriteable.writeToText(elki.result.textwriter.TextWriterStream, java.lang.String)
. Note: we deliberately do not implement TextWriteable!- Parameters:
out
- Output steamlabel
- Optional label to prefix
-
-