Class Cluster<T extends Clusterable>

  • Type Parameters:
    T - the type of points that can be clustered
    All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    CentroidCluster

    public class Cluster<T extends Clusterable>
    extends java.lang.Object
    implements java.io.Serializable
    Cluster holding a set of Clusterable points.
    Since:
    3.2
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.util.List<T> points
      The points contained in this cluster.
      private static long serialVersionUID
      Serializable version identifier.
    • Constructor Summary

      Constructors 
      Constructor Description
      Cluster()
      Build a cluster centered at a specified point.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void addPoint​(T point)
      Add a point to this cluster.
      java.util.List<T> getPoints()
      Get the points contained in the cluster.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • serialVersionUID

        private static final long serialVersionUID
        Serializable version identifier.
        See Also:
        Constant Field Values
      • points

        private final java.util.List<T extends Clusterable> points
        The points contained in this cluster.
    • Constructor Detail

      • Cluster

        public Cluster()
        Build a cluster centered at a specified point.
    • Method Detail

      • addPoint

        public void addPoint​(T point)
        Add a point to this cluster.
        Parameters:
        point - point to add
      • getPoints

        public java.util.List<T> getPoints()
        Get the points contained in the cluster.
        Returns:
        points contained in the cluster