public abstract class org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic implements org.apache.commons.math3.stat.descriptive.UnivariateStatistic
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic
  super_class: java.lang.Object
{
  private double[] storedData;
    descriptor: [D
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/stat/descriptive/AbstractUnivariateStatistic;

  public void setData(double[]);
    descriptor: ([D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
        start local 1 // double[] values
         0: .line 53
            aload 0 /* this */
            aload 1 /* values */
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack: org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic
         1: aload 1 /* values */
            invokevirtual double[].clone:()Ljava/lang/Object;
            checkcast double[]
      StackMap locals: org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic double[]
      StackMap stack: org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic double[]
         2: putfield org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.storedData:[D
         3: .line 54
            return
        end local 1 // double[] values
        end local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/commons/math3/stat/descriptive/AbstractUnivariateStatistic;
            0    4     1  values  [D
    MethodParameters:
        Name  Flags
      values  final

  public double[] getData();
    descriptor: ()[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
         0: .line 61
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.storedData:[D
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.storedData:[D
            invokevirtual double[].clone:()Ljava/lang/Object;
            checkcast double[]
      StackMap locals:
      StackMap stack: double[]
         2: areturn
        end local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/stat/descriptive/AbstractUnivariateStatistic;

  protected double[] getDataRef();
    descriptor: ()[D
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
         0: .line 69
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.storedData:[D
            areturn
        end local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/stat/descriptive/AbstractUnivariateStatistic;

  public void setData(double[], int, int);
    descriptor: ([DII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
        start local 1 // double[] values
        start local 2 // int begin
        start local 3 // int length
         0: .line 84
            aload 1 /* values */
            ifnonnull 2
         1: .line 85
            new org.apache.commons.math3.exception.NullArgumentException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.INPUT_ARRAY:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iconst_0
            anewarray java.lang.Object
            invokespecial org.apache.commons.math3.exception.NullArgumentException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
            athrow
         2: .line 88
      StackMap locals:
      StackMap stack:
            iload 2 /* begin */
            ifge 4
         3: .line 89
            new org.apache.commons.math3.exception.NotPositiveException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.START_POSITION:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iload 2 /* begin */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokespecial org.apache.commons.math3.exception.NotPositiveException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;)V
            athrow
         4: .line 92
      StackMap locals:
      StackMap stack:
            iload 3 /* length */
            ifge 6
         5: .line 93
            new org.apache.commons.math3.exception.NotPositiveException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.LENGTH:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iload 3 /* length */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokespecial org.apache.commons.math3.exception.NotPositiveException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;)V
            athrow
         6: .line 96
      StackMap locals:
      StackMap stack:
            iload 2 /* begin */
            iload 3 /* length */
            iadd
            aload 1 /* values */
            arraylength
            if_icmple 10
         7: .line 97
            new org.apache.commons.math3.exception.NumberIsTooLargeException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.SUBARRAY_ENDS_AFTER_ARRAY_END:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
         8: .line 98
            iload 2 /* begin */
            iload 3 /* length */
            iadd
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 1 /* values */
            arraylength
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_1
         9: .line 97
            invokespecial org.apache.commons.math3.exception.NumberIsTooLargeException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;Ljava/lang/Number;Z)V
            athrow
        10: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* length */
            newarray 7
            putfield org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.storedData:[D
        11: .line 101
            aload 1 /* values */
            iload 2 /* begin */
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.storedData:[D
            iconst_0
            iload 3 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        12: .line 102
            return
        end local 3 // int length
        end local 2 // int begin
        end local 1 // double[] values
        end local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/apache/commons/math3/stat/descriptive/AbstractUnivariateStatistic;
            0   13     1  values  [D
            0   13     2   begin  I
            0   13     3  length  I
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
        Name  Flags
      values  final
      begin   final
      length  final

  public double evaluate();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
         0: .line 113
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.storedData:[D
            invokevirtual org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.evaluate:([D)D
            dreturn
        end local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/stat/descriptive/AbstractUnivariateStatistic;
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException

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

  public abstract double evaluate(double[], int, int);
    descriptor: ([DII)D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
        Name  Flags
      values  final
      begin   final
      length  final

  public abstract org.apache.commons.math3.stat.descriptive.UnivariateStatistic copy();
    descriptor: ()Lorg/apache/commons/math3/stat/descriptive/UnivariateStatistic;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  protected boolean test(double[], int, int);
    descriptor: ([DII)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
        start local 1 // double[] values
        start local 2 // int begin
        start local 3 // int length
         0: .line 158
            aload 1 /* values */
            iload 2 /* begin */
            iload 3 /* length */
            iconst_0
            invokestatic org.apache.commons.math3.util.MathArrays.verifyValues:([DIIZ)Z
            ireturn
        end local 3 // int length
        end local 2 // int begin
        end local 1 // double[] values
        end local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/apache/commons/math3/stat/descriptive/AbstractUnivariateStatistic;
            0    1     1  values  [D
            0    1     2   begin  I
            0    1     3  length  I
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
        Name  Flags
      values  final
      begin   final
      length  final

  protected boolean test(double[], int, int, boolean);
    descriptor: ([DIIZ)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
        start local 1 // double[] values
        start local 2 // int begin
        start local 3 // int length
        start local 4 // boolean allowEmpty
         0: .line 184
            aload 1 /* values */
            iload 2 /* begin */
            iload 3 /* length */
            iload 4 /* allowEmpty */
            invokestatic org.apache.commons.math3.util.MathArrays.verifyValues:([DIIZ)Z
            ireturn
        end local 4 // boolean allowEmpty
        end local 3 // int length
        end local 2 // int begin
        end local 1 // double[] values
        end local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/apache/commons/math3/stat/descriptive/AbstractUnivariateStatistic;
            0    1     1      values  [D
            0    1     2       begin  I
            0    1     3      length  I
            0    1     4  allowEmpty  Z
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
            Name  Flags
      values      final
      begin       final
      length      final
      allowEmpty  final

  protected boolean test(double[], double[], int, int);
    descriptor: ([D[DII)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
        start local 1 // double[] values
        start local 2 // double[] weights
        start local 3 // int begin
        start local 4 // int length
         0: .line 221
            aload 1 /* values */
            aload 2 /* weights */
            iload 3 /* begin */
            iload 4 /* length */
            iconst_0
            invokestatic org.apache.commons.math3.util.MathArrays.verifyValues:([D[DIIZ)Z
            ireturn
        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.AbstractUnivariateStatistic this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/math3/stat/descriptive/AbstractUnivariateStatistic;
            0    1     1   values  [D
            0    1     2  weights  [D
            0    1     3    begin  I
            0    1     4   length  I
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
         Name  Flags
      values   final
      weights  final
      begin    final
      length   final

  protected boolean test(double[], double[], int, int, boolean);
    descriptor: ([D[DIIZ)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic this
        start local 1 // double[] values
        start local 2 // double[] weights
        start local 3 // int begin
        start local 4 // int length
        start local 5 // boolean allowEmpty
         0: .line 260
            aload 1 /* values */
            aload 2 /* weights */
            iload 3 /* begin */
            iload 4 /* length */
            iload 5 /* allowEmpty */
            invokestatic org.apache.commons.math3.util.MathArrays.verifyValues:([D[DIIZ)Z
            ireturn
        end local 5 // boolean allowEmpty
        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.AbstractUnivariateStatistic this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/apache/commons/math3/stat/descriptive/AbstractUnivariateStatistic;
            0    1     1      values  [D
            0    1     2     weights  [D
            0    1     3       begin  I
            0    1     4      length  I
            0    1     5  allowEmpty  Z
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
            Name  Flags
      values      final
      weights     final
      begin       final
      length      final
      allowEmpty  final
}
SourceFile: "AbstractUnivariateStatistic.java"