Class Clustering<T>

java.lang.Object
kieker.analysis.generic.clustering.Clustering<T>
Type Parameters:
T - The type of the data in the clusters

public class Clustering<T> extends Object
A type for the result of a clustering algorithm. One objects contains a set of clusters and a set of noise objects.
Since:
2.0.0
Author:
Lars Jürgensen
  • Constructor Details

    • Clustering

      public Clustering()
  • Method Details

    • getNoise

      public Set<T> getNoise()
    • setNoise

      public void setNoise(Set<T> noise)
    • getClusters

      public Set<Set<T>> getClusters()
    • setClusters

      public void setClusters(Set<Set<T>> clusters)
    • addCluster

      public void addCluster(Set<T> cluster)