class org.h2.index.RangeCursor implements org.h2.index.Cursor
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.h2.index.RangeCursor
  super_class: java.lang.Object
{
  private final org.h2.engine.Session session;
    descriptor: Lorg/h2/engine/Session;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private long current;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private org.h2.result.Row currentRow;
    descriptor: Lorg/h2/result/Row;
    flags: (0x0002) ACC_PRIVATE

  private final long start;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long end;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long step;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(org.h2.engine.Session, long, long);
    descriptor: (Lorg/h2/engine/Session;JJ)V
    flags: (0x0000) 
    Code:
      stack=8, locals=6, args_size=4
        start local 0 // org.h2.index.RangeCursor this
        start local 1 // org.h2.engine.Session session
        start local 2 // long start
        start local 4 // long end
         0: .line 27
            aload 0 /* this */
            aload 1 /* session */
            lload 2 /* start */
            lload 4 /* end */
            lconst_1
            invokespecial org.h2.index.RangeCursor.<init>:(Lorg/h2/engine/Session;JJJ)V
         1: .line 28
            return
        end local 4 // long end
        end local 2 // long start
        end local 1 // org.h2.engine.Session session
        end local 0 // org.h2.index.RangeCursor this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/h2/index/RangeCursor;
            0    2     1  session  Lorg/h2/engine/Session;
            0    2     2    start  J
            0    2     4      end  J
    MethodParameters:
         Name  Flags
      session  
      start    
      end      

  void <init>(org.h2.engine.Session, long, long, long);
    descriptor: (Lorg/h2/engine/Session;JJJ)V
    flags: (0x0000) 
    Code:
      stack=3, locals=8, args_size=5
        start local 0 // org.h2.index.RangeCursor this
        start local 1 // org.h2.engine.Session session
        start local 2 // long start
        start local 4 // long end
        start local 6 // long step
         0: .line 30
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 31
            aload 0 /* this */
            aload 1 /* session */
            putfield org.h2.index.RangeCursor.session:Lorg/h2/engine/Session;
         2: .line 32
            aload 0 /* this */
            lload 2 /* start */
            putfield org.h2.index.RangeCursor.start:J
         3: .line 33
            aload 0 /* this */
            lload 4 /* end */
            putfield org.h2.index.RangeCursor.end:J
         4: .line 34
            aload 0 /* this */
            lload 6 /* step */
            putfield org.h2.index.RangeCursor.step:J
         5: .line 35
            aload 0 /* this */
            iconst_1
            putfield org.h2.index.RangeCursor.beforeFirst:Z
         6: .line 36
            return
        end local 6 // long step
        end local 4 // long end
        end local 2 // long start
        end local 1 // org.h2.engine.Session session
        end local 0 // org.h2.index.RangeCursor this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/h2/index/RangeCursor;
            0    7     1  session  Lorg/h2/engine/Session;
            0    7     2    start  J
            0    7     4      end  J
            0    7     6     step  J
    MethodParameters:
         Name  Flags
      session  
      start    
      end      
      step     

  public org.h2.result.Row get();
    descriptor: ()Lorg/h2/result/Row;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.index.RangeCursor this
         0: .line 40
            aload 0 /* this */
            getfield org.h2.index.RangeCursor.currentRow:Lorg/h2/result/Row;
            areturn
        end local 0 // org.h2.index.RangeCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/index/RangeCursor;

  public org.h2.result.SearchRow getSearchRow();
    descriptor: ()Lorg/h2/result/SearchRow;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.index.RangeCursor this
         0: .line 45
            aload 0 /* this */
            getfield org.h2.index.RangeCursor.currentRow:Lorg/h2/result/Row;
            areturn
        end local 0 // org.h2.index.RangeCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/index/RangeCursor;

  public boolean next();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // org.h2.index.RangeCursor this
         0: .line 50
            aload 0 /* this */
            getfield org.h2.index.RangeCursor.beforeFirst:Z
            ifeq 4
         1: .line 51
            aload 0 /* this */
            iconst_0
            putfield org.h2.index.RangeCursor.beforeFirst:Z
         2: .line 52
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.RangeCursor.start:J
            putfield org.h2.index.RangeCursor.current:J
         3: .line 53
            goto 5
         4: .line 54
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.h2.index.RangeCursor.current:J
            aload 0 /* this */
            getfield org.h2.index.RangeCursor.step:J
            ladd
            putfield org.h2.index.RangeCursor.current:J
         5: .line 56
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.RangeCursor.session:Lorg/h2/engine/Session;
            iconst_1
            anewarray org.h2.value.Value
            dup
            iconst_0
            aload 0 /* this */
            getfield org.h2.index.RangeCursor.current:J
            invokestatic org.h2.value.ValueLong.get:(J)Lorg/h2/value/ValueLong;
            aastore
            iconst_1
            invokevirtual org.h2.engine.Session.createRow:([Lorg/h2/value/Value;I)Lorg/h2/result/Row;
            putfield org.h2.index.RangeCursor.currentRow:Lorg/h2/result/Row;
         6: .line 57
            aload 0 /* this */
            getfield org.h2.index.RangeCursor.step:J
            lconst_0
            lcmp
            ifle 8
            aload 0 /* this */
            getfield org.h2.index.RangeCursor.current:J
            aload 0 /* this */
            getfield org.h2.index.RangeCursor.end:J
            lcmp
            ifgt 7
            iconst_1
            goto 10
      StackMap locals:
      StackMap stack:
         7: iconst_0
            goto 10
      StackMap locals:
      StackMap stack:
         8: aload 0 /* this */
            getfield org.h2.index.RangeCursor.current:J
            aload 0 /* this */
            getfield org.h2.index.RangeCursor.end:J
            lcmp
            iflt 9
            iconst_1
            goto 10
      StackMap locals:
      StackMap stack:
         9: iconst_0
      StackMap locals:
      StackMap stack: int
        10: ireturn
        end local 0 // org.h2.index.RangeCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/h2/index/RangeCursor;

  public boolean previous();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.index.RangeCursor this
         0: .line 62
            aload 0 /* this */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokestatic org.h2.message.DbException.throwInternalError:(Ljava/lang/String;)Ljava/lang/RuntimeException;
            athrow
        end local 0 // org.h2.index.RangeCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/index/RangeCursor;
}
SourceFile: "RangeCursor.java"