public class org.apache.commons.math3.stat.descriptive.rank.Max 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.rank.Max
  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: -5593383832225844641

  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.rank.Max 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.rank.Max.n:J
         2: .line 58
            aload 0 /* this */
            ldc NaN
            putfield org.apache.commons.math3.stat.descriptive.rank.Max.value:D
         3: .line 59
            return
        end local 0 // org.apache.commons.math3.stat.descriptive.rank.Max this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/math3/stat/descriptive/rank/Max;

  public void <init>(org.apache.commons.math3.stat.descriptive.rank.Max);
    descriptor: (Lorg/apache/commons/math3/stat/descriptive/rank/Max;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.descriptive.rank.Max this
        start local 1 // org.apache.commons.math3.stat.descriptive.rank.Max 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.rank.Max.copy:(Lorg/apache/commons/math3/stat/descriptive/rank/Max;Lorg/apache/commons/math3/stat/descriptive/rank/Max;)V
         2: .line 70
            return
        end local 1 // org.apache.commons.math3.stat.descriptive.rank.Max original
        end local 0 // org.apache.commons.math3.stat.descriptive.rank.Max this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/apache/commons/math3/stat/descriptive/rank/Max;
            0    3     1  original  Lorg/apache/commons/math3/stat/descriptive/rank/Max;
    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.rank.Max this
        start local 1 // double d
         0: .line 77
            dload 1 /* d */
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.rank.Max.value:D
            dcmpl
            ifgt 1
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.rank.Max.value:D
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 2
         1: .line 78
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* d */
            putfield org.apache.commons.math3.stat.descriptive.rank.Max.value:D
         2: .line 80
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.commons.math3.stat.descriptive.rank.Max.n:J
            lconst_1
            ladd
            putfield org.apache.commons.math3.stat.descriptive.rank.Max.n:J
         3: .line 81
            return
        end local 1 // double d
        end local 0 // org.apache.commons.math3.stat.descriptive.rank.Max this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/math3/stat/descriptive/rank/Max;
            0    4     1     d  D
    MethodParameters:
      Name  Flags
      d     final

  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.rank.Max this
         0: .line 88
            aload 0 /* this */
            ldc NaN
            putfield org.apache.commons.math3.stat.descriptive.rank.Max.value:D
         1: .line 89
            aload 0 /* this */
            lconst_0
            putfield org.apache.commons.math3.stat.descriptive.rank.Max.n:J
         2: .line 90
            return
        end local 0 // org.apache.commons.math3.stat.descriptive.rank.Max this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/stat/descriptive/rank/Max;

  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.rank.Max this
         0: .line 97
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.rank.Max.value:D
            dreturn
        end local 0 // org.apache.commons.math3.stat.descriptive.rank.Max this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/stat/descriptive/rank/Max;

  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.rank.Max this
         0: .line 104
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.rank.Max.n:J
            lreturn
        end local 0 // org.apache.commons.math3.stat.descriptive.rank.Max this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/stat/descriptive/rank/Max;

  public double evaluate(double[], int, int);
    descriptor: ([DII)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // org.apache.commons.math3.stat.descriptive.rank.Max this
        start local 1 // double[] values
        start local 2 // int begin
        start local 3 // int length
         0: .line 132
            ldc NaN
            dstore 4 /* max */
        start local 4 // double max
         1: .line 133
            aload 0 /* this */
            aload 1 /* values */
            iload 2 /* begin */
            iload 3 /* length */
            invokevirtual org.apache.commons.math3.stat.descriptive.rank.Max.test:([DII)Z
            ifeq 11
         2: .line 134
            aload 1 /* values */
            iload 2 /* begin */
            daload
            dstore 4 /* max */
         3: .line 135
            iload 2 /* begin */
            istore 6 /* i */
        start local 6 // int i
         4: goto 10
         5: .line 136
      StackMap locals: double int
      StackMap stack:
            aload 1 /* values */
            iload 6 /* i */
            daload
            invokestatic java.lang.Double.isNaN:(D)Z
            ifne 9
         6: .line 137
            dload 4 /* max */
            aload 1 /* values */
            iload 6 /* i */
            daload
            dcmpl
            ifle 7
            dload 4 /* max */
            goto 8
      StackMap locals:
      StackMap stack:
         7: aload 1 /* values */
            iload 6 /* i */
            daload
      StackMap locals:
      StackMap stack: double
         8: dstore 4 /* max */
         9: .line 135
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 6 /* i */
            iload 2 /* begin */
            iload 3 /* length */
            iadd
            if_icmplt 5
        end local 6 // int i
        11: .line 141
      StackMap locals:
      StackMap stack:
            dload 4 /* max */
            dreturn
        end local 4 // double max
        end local 3 // int length
        end local 2 // int begin
        end local 1 // double[] values
        end local 0 // org.apache.commons.math3.stat.descriptive.rank.Max this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/apache/commons/math3/stat/descriptive/rank/Max;
            0   12     1  values  [D
            0   12     2   begin  I
            0   12     3  length  I
            1   12     4     max  D
            4   11     6       i  I
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
        Name  Flags
      values  final
      begin   final
      length  final

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

  public static void copy(org.apache.commons.math3.stat.descriptive.rank.Max, org.apache.commons.math3.stat.descriptive.rank.Max);
    descriptor: (Lorg/apache/commons/math3/stat/descriptive/rank/Max;Lorg/apache/commons/math3/stat/descriptive/rank/Max;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.descriptive.rank.Max source
        start local 1 // org.apache.commons.math3.stat.descriptive.rank.Max dest
         0: .line 165
            aload 0 /* source */
            invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
         1: .line 166
            aload 1 /* dest */
            invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
         2: .line 167
            aload 1 /* dest */
            aload 0 /* source */
            invokevirtual org.apache.commons.math3.stat.descriptive.rank.Max.getDataRef:()[D
            invokevirtual org.apache.commons.math3.stat.descriptive.rank.Max.setData:([D)V
         3: .line 168
            aload 1 /* dest */
            aload 0 /* source */
            getfield org.apache.commons.math3.stat.descriptive.rank.Max.n:J
            putfield org.apache.commons.math3.stat.descriptive.rank.Max.n:J
         4: .line 169
            aload 1 /* dest */
            aload 0 /* source */
            getfield org.apache.commons.math3.stat.descriptive.rank.Max.value:D
            putfield org.apache.commons.math3.stat.descriptive.rank.Max.value:D
         5: .line 170
            return
        end local 1 // org.apache.commons.math3.stat.descriptive.rank.Max dest
        end local 0 // org.apache.commons.math3.stat.descriptive.rank.Max source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0  source  Lorg/apache/commons/math3/stat/descriptive/rank/Max;
            0    6     1    dest  Lorg/apache/commons/math3/stat/descriptive/rank/Max;
    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.rank.Max.copy:()Lorg/apache/commons/math3/stat/descriptive/rank/Max;
            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.rank.Max.copy:()Lorg/apache/commons/math3/stat/descriptive/rank/Max;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "Max.java"