public class org.apache.commons.math3.optim.MaxEval implements org.apache.commons.math3.optim.OptimizationData
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.optim.MaxEval
  super_class: java.lang.Object
{
  private final int maxEval;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.optim.MaxEval this
        start local 1 // int max
         0: .line 34
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 35
            iload 1 /* max */
            ifgt 3
         2: .line 36
            new org.apache.commons.math3.exception.NotStrictlyPositiveException
            dup
            iload 1 /* max */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokespecial org.apache.commons.math3.exception.NotStrictlyPositiveException.<init>:(Ljava/lang/Number;)V
            athrow
         3: .line 39
      StackMap locals: org.apache.commons.math3.optim.MaxEval int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* max */
            putfield org.apache.commons.math3.optim.MaxEval.maxEval:I
         4: .line 40
            return
        end local 1 // int max
        end local 0 // org.apache.commons.math3.optim.MaxEval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/math3/optim/MaxEval;
            0    5     1   max  I
    MethodParameters:
      Name  Flags
      max   

  public int getMaxEval();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.optim.MaxEval this
         0: .line 48
            aload 0 /* this */
            getfield org.apache.commons.math3.optim.MaxEval.maxEval:I
            ireturn
        end local 0 // org.apache.commons.math3.optim.MaxEval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/optim/MaxEval;

  public static org.apache.commons.math3.optim.MaxEval unlimited();
    descriptor: ()Lorg/apache/commons/math3/optim/MaxEval;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 59
            new org.apache.commons.math3.optim.MaxEval
            dup
            ldc 2147483647
            invokespecial org.apache.commons.math3.optim.MaxEval.<init>:(I)V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "MaxEval.java"