public final class org.hibernate.engine.spi.RowSelection
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.hibernate.engine.spi.RowSelection
  super_class: java.lang.Object
{
  private java.lang.Integer firstRow;
    descriptor: Ljava/lang/Integer;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Integer maxRows;
    descriptor: Ljava/lang/Integer;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Integer timeout;
    descriptor: Ljava/lang/Integer;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Integer fetchSize;
    descriptor: Ljava/lang/Integer;
    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.hibernate.engine.spi.RowSelection this
         0: .line 14
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/RowSelection;

  public void setFirstRow(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.RowSelection this
        start local 1 // java.lang.Integer firstRow
         0: .line 21
            aload 1 /* firstRow */
            ifnull 2
            aload 1 /* firstRow */
            invokevirtual java.lang.Integer.intValue:()I
            ifge 2
         1: .line 22
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "first-row value cannot be negative : "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* firstRow */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 24
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* firstRow */
            putfield org.hibernate.engine.spi.RowSelection.firstRow:Ljava/lang/Integer;
         3: .line 25
            return
        end local 1 // java.lang.Integer firstRow
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/hibernate/engine/spi/RowSelection;
            0    4     1  firstRow  Ljava/lang/Integer;
    MethodParameters:
          Name  Flags
      firstRow  

  public void setFirstRow(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.RowSelection this
        start local 1 // int firstRow
         0: .line 28
            aload 0 /* this */
            iload 1 /* firstRow */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putfield org.hibernate.engine.spi.RowSelection.firstRow:Ljava/lang/Integer;
         1: .line 29
            return
        end local 1 // int firstRow
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/hibernate/engine/spi/RowSelection;
            0    2     1  firstRow  I
    MethodParameters:
          Name  Flags
      firstRow  

  public java.lang.Integer getFirstRow();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.RowSelection this
         0: .line 32
            aload 0 /* this */
            getfield org.hibernate.engine.spi.RowSelection.firstRow:Ljava/lang/Integer;
            areturn
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/RowSelection;

  public void setMaxRows(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.RowSelection this
        start local 1 // java.lang.Integer maxRows
         0: .line 36
            aload 0 /* this */
            aload 1 /* maxRows */
            putfield org.hibernate.engine.spi.RowSelection.maxRows:Ljava/lang/Integer;
         1: .line 37
            return
        end local 1 // java.lang.Integer maxRows
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/hibernate/engine/spi/RowSelection;
            0    2     1  maxRows  Ljava/lang/Integer;
    MethodParameters:
         Name  Flags
      maxRows  

  public void setMaxRows(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.RowSelection this
        start local 1 // int maxRows
         0: .line 40
            aload 0 /* this */
            iload 1 /* maxRows */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putfield org.hibernate.engine.spi.RowSelection.maxRows:Ljava/lang/Integer;
         1: .line 41
            return
        end local 1 // int maxRows
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/hibernate/engine/spi/RowSelection;
            0    2     1  maxRows  I
    MethodParameters:
         Name  Flags
      maxRows  

  public java.lang.Integer getMaxRows();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.RowSelection this
         0: .line 44
            aload 0 /* this */
            getfield org.hibernate.engine.spi.RowSelection.maxRows:Ljava/lang/Integer;
            areturn
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/RowSelection;

  public void setTimeout(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.RowSelection this
        start local 1 // java.lang.Integer timeout
         0: .line 48
            aload 0 /* this */
            aload 1 /* timeout */
            putfield org.hibernate.engine.spi.RowSelection.timeout:Ljava/lang/Integer;
         1: .line 49
            return
        end local 1 // java.lang.Integer timeout
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/hibernate/engine/spi/RowSelection;
            0    2     1  timeout  Ljava/lang/Integer;
    MethodParameters:
         Name  Flags
      timeout  

  public void setTimeout(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.RowSelection this
        start local 1 // int timeout
         0: .line 52
            aload 0 /* this */
            iload 1 /* timeout */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putfield org.hibernate.engine.spi.RowSelection.timeout:Ljava/lang/Integer;
         1: .line 53
            return
        end local 1 // int timeout
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/hibernate/engine/spi/RowSelection;
            0    2     1  timeout  I
    MethodParameters:
         Name  Flags
      timeout  

  public java.lang.Integer getTimeout();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.RowSelection this
         0: .line 56
            aload 0 /* this */
            getfield org.hibernate.engine.spi.RowSelection.timeout:Ljava/lang/Integer;
            areturn
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/RowSelection;

  public java.lang.Integer getFetchSize();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.RowSelection this
         0: .line 60
            aload 0 /* this */
            getfield org.hibernate.engine.spi.RowSelection.fetchSize:Ljava/lang/Integer;
            areturn
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/RowSelection;

  public void setFetchSize(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.RowSelection this
        start local 1 // java.lang.Integer fetchSize
         0: .line 64
            aload 0 /* this */
            aload 1 /* fetchSize */
            putfield org.hibernate.engine.spi.RowSelection.fetchSize:Ljava/lang/Integer;
         1: .line 65
            return
        end local 1 // java.lang.Integer fetchSize
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/hibernate/engine/spi/RowSelection;
            0    2     1  fetchSize  Ljava/lang/Integer;
    MethodParameters:
           Name  Flags
      fetchSize  

  public void setFetchSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.RowSelection this
        start local 1 // int fetchSize
         0: .line 68
            aload 0 /* this */
            iload 1 /* fetchSize */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putfield org.hibernate.engine.spi.RowSelection.fetchSize:Ljava/lang/Integer;
         1: .line 69
            return
        end local 1 // int fetchSize
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/hibernate/engine/spi/RowSelection;
            0    2     1  fetchSize  I
    MethodParameters:
           Name  Flags
      fetchSize  

  public boolean definesLimits();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.RowSelection this
         0: .line 72
            aload 0 /* this */
            getfield org.hibernate.engine.spi.RowSelection.maxRows:Ljava/lang/Integer;
            ifnonnull 2
            aload 0 /* this */
            getfield org.hibernate.engine.spi.RowSelection.firstRow:Ljava/lang/Integer;
            ifnull 1
            aload 0 /* this */
            getfield org.hibernate.engine.spi.RowSelection.firstRow:Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            ifle 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_1
            ireturn
        end local 0 // org.hibernate.engine.spi.RowSelection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/hibernate/engine/spi/RowSelection;
}
SourceFile: "RowSelection.java"