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 0: aload 0
invokespecial java.lang.Object.<init>:()V
return
end local 0 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 start local 1 0: aload 0
aload 1
ifnonnull 1
aconst_null
goto 2
StackMap locals:
StackMap stack: org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic
1: aload 1
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: return
end local 1 end local 0 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 0: aload 0
getfield org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.storedData:[D
ifnonnull 1
aconst_null
goto 2
StackMap locals:
StackMap stack:
1: aload 0
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 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 0: aload 0
getfield org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.storedData:[D
areturn
end local 0 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 start local 1 start local 2 start local 3 0: aload 1
ifnonnull 2
1: 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: StackMap locals:
StackMap stack:
iload 2
ifge 4
3: 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
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: StackMap locals:
StackMap stack:
iload 3
ifge 6
5: 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
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: StackMap locals:
StackMap stack:
iload 2
iload 3
iadd
aload 1
arraylength
if_icmple 10
7: 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: iload 2
iload 3
iadd
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
aload 1
arraylength
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
iconst_1
9: 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: StackMap locals:
StackMap stack:
aload 0
iload 3
newarray 7
putfield org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.storedData:[D
11: aload 1
iload 2
aload 0
getfield org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.storedData:[D
iconst_0
iload 3
invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
12: return
end local 3 end local 2 end local 1 end local 0 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 0: aload 0
aload 0
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 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 start local 1 0: aload 0
aload 1
iconst_0
iconst_0
invokevirtual org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.test:([DII)Z
pop
1: aload 0
aload 1
iconst_0
aload 1
arraylength
invokevirtual org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic.evaluate:([DII)D
dreturn
end local 1 end local 0 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 start local 1 start local 2 start local 3 0: aload 1
iload 2
iload 3
iconst_0
invokestatic org.apache.commons.math3.util.MathArrays.verifyValues:([DIIZ)Z
ireturn
end local 3 end local 2 end local 1 end local 0 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 start local 1 start local 2 start local 3 start local 4 0: aload 1
iload 2
iload 3
iload 4
invokestatic org.apache.commons.math3.util.MathArrays.verifyValues:([DIIZ)Z
ireturn
end local 4 end local 3 end local 2 end local 1 end local 0 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 start local 1 start local 2 start local 3 start local 4 0: aload 1
aload 2
iload 3
iload 4
iconst_0
invokestatic org.apache.commons.math3.util.MathArrays.verifyValues:([D[DIIZ)Z
ireturn
end local 4 end local 3 end local 2 end local 1 end local 0 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 start local 1 start local 2 start local 3 start local 4 start local 5 0: aload 1
aload 2
iload 3
iload 4
iload 5
invokestatic org.apache.commons.math3.util.MathArrays.verifyValues:([D[DIIZ)Z
ireturn
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 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"