public class org.apache.commons.math3.stat.clustering.Cluster<T extends org.apache.commons.math3.stat.clustering.Clusterable<T>> implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.stat.clustering.Cluster
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -3442297081515880464

  private final java.util.List<T> points;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<TT;>;

  private final T center;
    descriptor: Lorg/apache/commons/math3/stat/clustering/Clusterable;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TT;

  public void <init>();
    descriptor: (Lorg/apache/commons/math3/stat/clustering/Clusterable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.clustering.Cluster this
        start local 1 // org.apache.commons.math3.stat.clustering.Clusterable center
         0: .line 47
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 48
            aload 0 /* this */
            aload 1 /* center */
            putfield org.apache.commons.math3.stat.clustering.Cluster.center:Lorg/apache/commons/math3/stat/clustering/Clusterable;
         2: .line 49
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.commons.math3.stat.clustering.Cluster.points:Ljava/util/List;
         3: .line 50
            return
        end local 1 // org.apache.commons.math3.stat.clustering.Clusterable center
        end local 0 // org.apache.commons.math3.stat.clustering.Cluster this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/commons/math3/stat/clustering/Cluster<TT;>;
            0    4     1  center  TT;
    Signature: (TT;)V
    MethodParameters:
        Name  Flags
      center  final

  public void addPoint();
    descriptor: (Lorg/apache/commons/math3/stat/clustering/Clusterable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.clustering.Cluster this
        start local 1 // org.apache.commons.math3.stat.clustering.Clusterable point
         0: .line 57
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.clustering.Cluster.points:Ljava/util/List;
            aload 1 /* point */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 58
            return
        end local 1 // org.apache.commons.math3.stat.clustering.Clusterable point
        end local 0 // org.apache.commons.math3.stat.clustering.Cluster this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/commons/math3/stat/clustering/Cluster<TT;>;
            0    2     1  point  TT;
    Signature: (TT;)V
    MethodParameters:
       Name  Flags
      point  final

  public java.util.List<T> getPoints();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.clustering.Cluster this
         0: .line 65
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.clustering.Cluster.points:Ljava/util/List;
            areturn
        end local 0 // org.apache.commons.math3.stat.clustering.Cluster this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/stat/clustering/Cluster<TT;>;
    Signature: ()Ljava/util/List<TT;>;

  public T getCenter();
    descriptor: ()Lorg/apache/commons/math3/stat/clustering/Clusterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.clustering.Cluster this
         0: .line 73
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.clustering.Cluster.center:Lorg/apache/commons/math3/stat/clustering/Clusterable;
            areturn
        end local 0 // org.apache.commons.math3.stat.clustering.Cluster this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/stat/clustering/Cluster<TT;>;
    Signature: ()TT;
}
Signature: <T::Lorg/apache/commons/math3/stat/clustering/Clusterable<TT;>;>Ljava/lang/Object;Ljava/io/Serializable;
SourceFile: "Cluster.java"
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()