Uses of Class
it.unibz.algorithms.types.Cluster

Packages that use Cluster
it.unibz.algorithms   
it.unibz.algorithms.types   
 

Uses of Cluster in it.unibz.algorithms
 

Fields in it.unibz.algorithms with type parameters of type Cluster
private static java.util.List<Cluster> KMeans.clusters
           
private static java.util.List<Cluster> DBScan.clusters
           
 

Methods in it.unibz.algorithms that return types with arguments of type Cluster
 java.util.List<Cluster> KMeans.getClusters()
          Method returns all Clusters to be printed out
 java.util.List<Cluster> DBScan.getClusters()
          Method returns all Clusters to be printed out
 

Methods in it.unibz.algorithms with parameters of type Cluster
private static boolean DBScan.addNeighbors(Cluster cluster, Cluster cluster2)
          Method adds Instances of b to a if has to be updated
 

Method parameters in it.unibz.algorithms with type arguments of type Cluster
static java.lang.String Utility.display(java.util.List<Cluster> clusters, boolean rename)
          Method returns formatted string ready to be displayed in the GUI's output box
 

Uses of Cluster in it.unibz.algorithms.types
 

Fields in it.unibz.algorithms.types declared as Cluster
private  Cluster Instance.cluster
           
private  Cluster Centroid.cluster
           
 

Methods in it.unibz.algorithms.types with parameters of type Cluster
 void Instance.setCluster(Cluster cluster)
          This method sets a new value to the cluster variable and calls the method that calculates the eucludean distance
 void Centroid.setCluster(Cluster c)
          This method sets the cluster object.