public class io.ebean.FetchConfig implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.ebean.FetchConfig
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private int lazyBatchSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int queryBatchSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean queryAll;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.ebean.FetchConfig this
         0: .line 154
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 145
            aload 0 /* this */
            iconst_m1
            putfield io.ebean.FetchConfig.lazyBatchSize:I
         2: .line 147
            aload 0 /* this */
            iconst_m1
            putfield io.ebean.FetchConfig.queryBatchSize:I
         3: .line 155
            return
        end local 0 // io.ebean.FetchConfig this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/ebean/FetchConfig;

  public io.ebean.FetchConfig lazy();
    descriptor: ()Lio/ebean/FetchConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.ebean.FetchConfig this
         0: .line 162
            aload 0 /* this */
            iconst_0
            putfield io.ebean.FetchConfig.lazyBatchSize:I
         1: .line 163
            aload 0 /* this */
            iconst_0
            putfield io.ebean.FetchConfig.queryAll:Z
         2: .line 164
            aload 0 /* this */
            areturn
        end local 0 // io.ebean.FetchConfig this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/ebean/FetchConfig;

  public io.ebean.FetchConfig lazy(int);
    descriptor: (I)Lio/ebean/FetchConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.FetchConfig this
        start local 1 // int lazyBatchSize
         0: .line 173
            aload 0 /* this */
            iload 1 /* lazyBatchSize */
            putfield io.ebean.FetchConfig.lazyBatchSize:I
         1: .line 174
            aload 0 /* this */
            iconst_0
            putfield io.ebean.FetchConfig.queryAll:Z
         2: .line 175
            aload 0 /* this */
            areturn
        end local 1 // int lazyBatchSize
        end local 0 // io.ebean.FetchConfig this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/ebean/FetchConfig;
            0    3     1  lazyBatchSize  I
    MethodParameters:
               Name  Flags
      lazyBatchSize  

  public io.ebean.FetchConfig query();
    descriptor: ()Lio/ebean/FetchConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.ebean.FetchConfig this
         0: .line 186
            aload 0 /* this */
            iconst_0
            putfield io.ebean.FetchConfig.queryBatchSize:I
         1: .line 187
            aload 0 /* this */
            iconst_1
            putfield io.ebean.FetchConfig.queryAll:Z
         2: .line 188
            aload 0 /* this */
            areturn
        end local 0 // io.ebean.FetchConfig this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/ebean/FetchConfig;

  public io.ebean.FetchConfig query(int);
    descriptor: (I)Lio/ebean/FetchConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.ebean.FetchConfig this
        start local 1 // int queryBatchSize
         0: .line 206
            aload 0 /* this */
            iload 1 /* queryBatchSize */
            putfield io.ebean.FetchConfig.queryBatchSize:I
         1: .line 208
            aload 0 /* this */
            aload 0 /* this */
            getfield io.ebean.FetchConfig.lazyBatchSize:I
            iconst_m1
            if_icmpne 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack: io.ebean.FetchConfig
         2: iconst_0
      StackMap locals: io.ebean.FetchConfig int
      StackMap stack: io.ebean.FetchConfig int
         3: putfield io.ebean.FetchConfig.queryAll:Z
         4: .line 209
            aload 0 /* this */
            areturn
        end local 1 // int queryBatchSize
        end local 0 // io.ebean.FetchConfig this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lio/ebean/FetchConfig;
            0    5     1  queryBatchSize  I
    MethodParameters:
                Name  Flags
      queryBatchSize  

  public io.ebean.FetchConfig queryFirst(int);
    descriptor: (I)Lio/ebean/FetchConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.FetchConfig this
        start local 1 // int queryBatchSize
         0: .line 223
            aload 0 /* this */
            iload 1 /* queryBatchSize */
            putfield io.ebean.FetchConfig.queryBatchSize:I
         1: .line 224
            aload 0 /* this */
            iconst_0
            putfield io.ebean.FetchConfig.queryAll:Z
         2: .line 225
            aload 0 /* this */
            areturn
        end local 1 // int queryBatchSize
        end local 0 // io.ebean.FetchConfig this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lio/ebean/FetchConfig;
            0    3     1  queryBatchSize  I
    MethodParameters:
                Name  Flags
      queryBatchSize  

  public int getLazyBatchSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.FetchConfig this
         0: .line 232
            aload 0 /* this */
            getfield io.ebean.FetchConfig.lazyBatchSize:I
            ireturn
        end local 0 // io.ebean.FetchConfig this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/FetchConfig;

  public int getQueryBatchSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.FetchConfig this
         0: .line 239
            aload 0 /* this */
            getfield io.ebean.FetchConfig.queryBatchSize:I
            ireturn
        end local 0 // io.ebean.FetchConfig this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/FetchConfig;

  public boolean isQueryAll();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.FetchConfig this
         0: .line 247
            aload 0 /* this */
            getfield io.ebean.FetchConfig.queryAll:Z
            ireturn
        end local 0 // io.ebean.FetchConfig this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/FetchConfig;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.ebean.FetchConfig this
        start local 1 // java.lang.Object o
         0: .line 252
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 253
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnull 2
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 255
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.ebean.FetchConfig
            astore 2 /* that */
        start local 2 // io.ebean.FetchConfig that
         4: .line 256
            aload 0 /* this */
            getfield io.ebean.FetchConfig.lazyBatchSize:I
            aload 2 /* that */
            getfield io.ebean.FetchConfig.lazyBatchSize:I
            if_icmpeq 5
            iconst_0
            ireturn
         5: .line 257
      StackMap locals: io.ebean.FetchConfig
      StackMap stack:
            aload 0 /* this */
            getfield io.ebean.FetchConfig.queryBatchSize:I
            aload 2 /* that */
            getfield io.ebean.FetchConfig.queryBatchSize:I
            if_icmpeq 6
            iconst_0
            ireturn
         6: .line 258
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.ebean.FetchConfig.queryAll:Z
            aload 2 /* that */
            getfield io.ebean.FetchConfig.queryAll:Z
            if_icmpne 7
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         7: iconst_0
            ireturn
        end local 2 // io.ebean.FetchConfig that
        end local 1 // java.lang.Object o
        end local 0 // io.ebean.FetchConfig this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/ebean/FetchConfig;
            0    8     1     o  Ljava/lang/Object;
            4    8     2  that  Lio/ebean/FetchConfig;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.ebean.FetchConfig this
         0: .line 263
            aload 0 /* this */
            getfield io.ebean.FetchConfig.lazyBatchSize:I
            istore 1 /* result */
        start local 1 // int result
         1: .line 264
            ldc 92821
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.ebean.FetchConfig.queryBatchSize:I
            iadd
            istore 1 /* result */
         2: .line 265
            ldc 92821
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.ebean.FetchConfig.queryAll:Z
            ifeq 3
            iconst_1
            goto 4
      StackMap locals: io.ebean.FetchConfig int
      StackMap stack: int
         3: iconst_0
      StackMap locals: io.ebean.FetchConfig int
      StackMap stack: int int
         4: iadd
            istore 1 /* result */
         5: .line 266
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // io.ebean.FetchConfig this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/ebean/FetchConfig;
            1    6     1  result  I
}
SourceFile: "FetchConfig.java"