public class org.h2.index.ScanCursor implements org.h2.index.Cursor
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.index.ScanCursor
  super_class: java.lang.Object
{
  private final org.h2.index.ScanIndex scan;
    descriptor: Lorg/h2/index/ScanIndex;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  void <init>(org.h2.index.ScanIndex);
    descriptor: (Lorg/h2/index/ScanIndex;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.index.ScanCursor this
        start local 1 // org.h2.index.ScanIndex scan
         0: .line 19
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 20
            aload 0 /* this */
            aload 1 /* scan */
            putfield org.h2.index.ScanCursor.scan:Lorg/h2/index/ScanIndex;
         2: .line 21
            aload 0 /* this */
            aconst_null
            putfield org.h2.index.ScanCursor.row:Lorg/h2/result/Row;
         3: .line 22
            return
        end local 1 // org.h2.index.ScanIndex scan
        end local 0 // org.h2.index.ScanCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/index/ScanCursor;
            0    4     1  scan  Lorg/h2/index/ScanIndex;
    MethodParameters:
      Name  Flags
      scan  

  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.ScanCursor this
         0: .line 26
            aload 0 /* this */
            getfield org.h2.index.ScanCursor.row:Lorg/h2/result/Row;
            areturn
        end local 0 // org.h2.index.ScanCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/index/ScanCursor;

  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.ScanCursor this
         0: .line 31
            aload 0 /* this */
            getfield org.h2.index.ScanCursor.row:Lorg/h2/result/Row;
            areturn
        end local 0 // org.h2.index.ScanCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/index/ScanCursor;

  public boolean next();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.index.ScanCursor this
         0: .line 36
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.ScanCursor.scan:Lorg/h2/index/ScanIndex;
            aload 0 /* this */
            getfield org.h2.index.ScanCursor.row:Lorg/h2/result/Row;
            invokevirtual org.h2.index.ScanIndex.getNextRow:(Lorg/h2/result/Row;)Lorg/h2/result/Row;
            putfield org.h2.index.ScanCursor.row:Lorg/h2/result/Row;
         1: .line 37
            aload 0 /* this */
            getfield org.h2.index.ScanCursor.row:Lorg/h2/result/Row;
            ifnull 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
        end local 0 // org.h2.index.ScanCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/index/ScanCursor;

  public boolean previous();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.index.ScanCursor this
         0: .line 42
            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.ScanCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/index/ScanCursor;
}
SourceFile: "ScanCursor.java"