public class org.apache.commons.math3.stat.descriptive.summary.Sum extends org.apache.commons.math3.stat.descriptive.AbstractStorelessUnivariateStatistic implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.stat.descriptive.summary.Sum
  super_class: org.apache.commons.math3.stat.descriptive.AbstractStorelessUnivariateStatistic
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -8231831954703408316

  private long n;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private double value;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
         0: .line 56
            aload 0 /* this */
            invokespecial org.apache.commons.math3.stat.descriptive.AbstractStorelessUnivariateStatistic.<init>:()V
         1: .line 57
            aload 0 /* this */
            lconst_0
            putfield org.apache.commons.math3.stat.descriptive.summary.Sum.n:J
         2: .line 58
            aload 0 /* this */
            dconst_0
            putfield org.apache.commons.math3.stat.descriptive.summary.Sum.value:D
         3: .line 59
            return
        end local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;

  public void <init>(org.apache.commons.math3.stat.descriptive.summary.Sum);
    descriptor: (Lorg/apache/commons/math3/stat/descriptive/summary/Sum;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
        start local 1 // org.apache.commons.math3.stat.descriptive.summary.Sum original
         0: .line 68
            aload 0 /* this */
            invokespecial org.apache.commons.math3.stat.descriptive.AbstractStorelessUnivariateStatistic.<init>:()V
         1: .line 69
            aload 1 /* original */
            aload 0 /* this */
            invokestatic org.apache.commons.math3.stat.descriptive.summary.Sum.copy:(Lorg/apache/commons/math3/stat/descriptive/summary/Sum;Lorg/apache/commons/math3/stat/descriptive/summary/Sum;)V
         2: .line 70
            return
        end local 1 // org.apache.commons.math3.stat.descriptive.summary.Sum original
        end local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;
            0    3     1  original  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
          Name  Flags
      original  

  public void increment(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
        start local 1 // double d
         0: .line 77
            aload 0 /* this */
            dup
            getfield org.apache.commons.math3.stat.descriptive.summary.Sum.value:D
            dload 1 /* d */
            dadd
            putfield org.apache.commons.math3.stat.descriptive.summary.Sum.value:D
         1: .line 78
            aload 0 /* this */
            dup
            getfield org.apache.commons.math3.stat.descriptive.summary.Sum.n:J
            lconst_1
            ladd
            putfield org.apache.commons.math3.stat.descriptive.summary.Sum.n:J
         2: .line 79
            return
        end local 1 // double d
        end local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;
            0    3     1     d  D
    MethodParameters:
      Name  Flags
      d     final

  public double getResult();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
         0: .line 86
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.summary.Sum.value:D
            dreturn
        end local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;

  public long getN();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
         0: .line 93
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.summary.Sum.n:J
            lreturn
        end local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
         0: .line 101
            aload 0 /* this */
            dconst_0
            putfield org.apache.commons.math3.stat.descriptive.summary.Sum.value:D
         1: .line 102
            aload 0 /* this */
            lconst_0
            putfield org.apache.commons.math3.stat.descriptive.summary.Sum.n:J
         2: .line 103
            return
        end local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;

  public double evaluate(double[], int, int);
    descriptor: ([DII)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
        start local 1 // double[] values
        start local 2 // int begin
        start local 3 // int length
         0: .line 122
            ldc NaN
            dstore 4 /* sum */
        start local 4 // double sum
         1: .line 123
            aload 0 /* this */
            aload 1 /* values */
            iload 2 /* begin */
            iload 3 /* length */
            iconst_1
            invokevirtual org.apache.commons.math3.stat.descriptive.summary.Sum.test:([DIIZ)Z
            ifeq 8
         2: .line 124
            dconst_0
            dstore 4 /* sum */
         3: .line 125
            iload 2 /* begin */
            istore 6 /* i */
        start local 6 // int i
         4: goto 7
         5: .line 126
      StackMap locals: double int
      StackMap stack:
            dload 4 /* sum */
            aload 1 /* values */
            iload 6 /* i */
            daload
            dadd
            dstore 4 /* sum */
         6: .line 125
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 6 /* i */
            iload 2 /* begin */
            iload 3 /* length */
            iadd
            if_icmplt 5
        end local 6 // int i
         8: .line 129
      StackMap locals:
      StackMap stack:
            dload 4 /* sum */
            dreturn
        end local 4 // double sum
        end local 3 // int length
        end local 2 // int begin
        end local 1 // double[] values
        end local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;
            0    9     1  values  [D
            0    9     2   begin  I
            0    9     3  length  I
            1    9     4     sum  D
            4    8     6       i  I
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
        Name  Flags
      values  final
      begin   final
      length  final

  public double evaluate(double[], double[], int, int);
    descriptor: ([D[DII)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=5
        start local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
        start local 1 // double[] values
        start local 2 // double[] weights
        start local 3 // int begin
        start local 4 // int length
         0: .line 161
            ldc NaN
            dstore 5 /* sum */
        start local 5 // double sum
         1: .line 162
            aload 0 /* this */
            aload 1 /* values */
            aload 2 /* weights */
            iload 3 /* begin */
            iload 4 /* length */
            iconst_1
            invokevirtual org.apache.commons.math3.stat.descriptive.summary.Sum.test:([D[DIIZ)Z
            ifeq 8
         2: .line 163
            dconst_0
            dstore 5 /* sum */
         3: .line 164
            iload 3 /* begin */
            istore 7 /* i */
        start local 7 // int i
         4: goto 7
         5: .line 165
      StackMap locals: double int
      StackMap stack:
            dload 5 /* sum */
            aload 1 /* values */
            iload 7 /* i */
            daload
            aload 2 /* weights */
            iload 7 /* i */
            daload
            dmul
            dadd
            dstore 5 /* sum */
         6: .line 164
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 7 /* i */
            iload 3 /* begin */
            iload 4 /* length */
            iadd
            if_icmplt 5
        end local 7 // int i
         8: .line 168
      StackMap locals:
      StackMap stack:
            dload 5 /* sum */
            dreturn
        end local 5 // double sum
        end local 4 // int length
        end local 3 // int begin
        end local 2 // double[] weights
        end local 1 // double[] values
        end local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;
            0    9     1   values  [D
            0    9     2  weights  [D
            0    9     3    begin  I
            0    9     4   length  I
            1    9     5      sum  D
            4    8     7        i  I
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
         Name  Flags
      values   final
      weights  final
      begin    final
      length   final

  public double evaluate(double[], double[]);
    descriptor: ([D[D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
        start local 1 // double[] values
        start local 2 // double[] weights
         0: .line 195
            aload 0 /* this */
            aload 1 /* values */
            aload 2 /* weights */
            iconst_0
            aload 1 /* values */
            arraylength
            invokevirtual org.apache.commons.math3.stat.descriptive.summary.Sum.evaluate:([D[DII)D
            dreturn
        end local 2 // double[] weights
        end local 1 // double[] values
        end local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;
            0    1     1   values  [D
            0    1     2  weights  [D
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
         Name  Flags
      values   final
      weights  final

  public org.apache.commons.math3.stat.descriptive.summary.Sum copy();
    descriptor: ()Lorg/apache/commons/math3/stat/descriptive/summary/Sum;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
         0: .line 203
            new org.apache.commons.math3.stat.descriptive.summary.Sum
            dup
            invokespecial org.apache.commons.math3.stat.descriptive.summary.Sum.<init>:()V
            astore 1 /* result */
        start local 1 // org.apache.commons.math3.stat.descriptive.summary.Sum result
         1: .line 205
            aload 0 /* this */
            aload 1 /* result */
            invokestatic org.apache.commons.math3.stat.descriptive.summary.Sum.copy:(Lorg/apache/commons/math3/stat/descriptive/summary/Sum;Lorg/apache/commons/math3/stat/descriptive/summary/Sum;)V
         2: .line 206
            aload 1 /* result */
            areturn
        end local 1 // org.apache.commons.math3.stat.descriptive.summary.Sum result
        end local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;
            1    3     1  result  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;

  public static void copy(org.apache.commons.math3.stat.descriptive.summary.Sum, org.apache.commons.math3.stat.descriptive.summary.Sum);
    descriptor: (Lorg/apache/commons/math3/stat/descriptive/summary/Sum;Lorg/apache/commons/math3/stat/descriptive/summary/Sum;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum source
        start local 1 // org.apache.commons.math3.stat.descriptive.summary.Sum dest
         0: .line 219
            aload 0 /* source */
            invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
         1: .line 220
            aload 1 /* dest */
            invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
         2: .line 221
            aload 1 /* dest */
            aload 0 /* source */
            invokevirtual org.apache.commons.math3.stat.descriptive.summary.Sum.getDataRef:()[D
            invokevirtual org.apache.commons.math3.stat.descriptive.summary.Sum.setData:([D)V
         3: .line 222
            aload 1 /* dest */
            aload 0 /* source */
            getfield org.apache.commons.math3.stat.descriptive.summary.Sum.n:J
            putfield org.apache.commons.math3.stat.descriptive.summary.Sum.n:J
         4: .line 223
            aload 1 /* dest */
            aload 0 /* source */
            getfield org.apache.commons.math3.stat.descriptive.summary.Sum.value:D
            putfield org.apache.commons.math3.stat.descriptive.summary.Sum.value:D
         5: .line 224
            return
        end local 1 // org.apache.commons.math3.stat.descriptive.summary.Sum dest
        end local 0 // org.apache.commons.math3.stat.descriptive.summary.Sum source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0  source  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;
            0    6     1    dest  Lorg/apache/commons/math3/stat/descriptive/summary/Sum;
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
        Name  Flags
      source  
      dest    

  public org.apache.commons.math3.stat.descriptive.StorelessUnivariateStatistic copy();
    descriptor: ()Lorg/apache/commons/math3/stat/descriptive/StorelessUnivariateStatistic;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.apache.commons.math3.stat.descriptive.summary.Sum.copy:()Lorg/apache/commons/math3/stat/descriptive/summary/Sum;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.apache.commons.math3.stat.descriptive.UnivariateStatistic copy();
    descriptor: ()Lorg/apache/commons/math3/stat/descriptive/UnivariateStatistic;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.apache.commons.math3.stat.descriptive.summary.Sum.copy:()Lorg/apache/commons/math3/stat/descriptive/summary/Sum;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "Sum.java"