Package com.chemaxon.clustering.common
Interface SingleLevelClustering<T,C extends Cluster<T>>
-
- Type Parameters:
C
- Type of clusters representedT
- Type of items contained by the clusters
- All Known Subinterfaces:
IDBasedSingleLevelClustering
@Beta @PublicAPI public interface SingleLevelClustering<T,C extends Cluster<T>>
A grouping of structures into disjunct groups.Please note that this interface is marked with @Beta annotation, so it can be subject of incompatible changes or removal in later releases.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.common.base.Optional<C>
clusterOf(T item)
Identify the cluster containing the given item.List<C>
clusters()
Represented cluster.
-