public class org.h2.index.MetaCursor implements org.h2.index.Cursor
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.index.MetaCursor
  super_class: java.lang.Object
{
  private org.h2.result.Row current;
    descriptor: Lorg/h2/result/Row;
    flags: (0x0002) ACC_PRIVATE

  private final java.util.ArrayList<org.h2.result.Row> rows;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<Lorg/h2/result/Row;>;

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

  void <init>(java.util.ArrayList<org.h2.result.Row>);
    descriptor: (Ljava/util/ArrayList;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.index.MetaCursor this
        start local 1 // java.util.ArrayList rows
         0: .line 23
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 24
            aload 0 /* this */
            aload 1 /* rows */
            putfield org.h2.index.MetaCursor.rows:Ljava/util/ArrayList;
         2: .line 25
            return
        end local 1 // java.util.ArrayList rows
        end local 0 // org.h2.index.MetaCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/index/MetaCursor;
            0    3     1  rows  Ljava/util/ArrayList<Lorg/h2/result/Row;>;
    Signature: (Ljava/util/ArrayList<Lorg/h2/result/Row;>;)V
    MethodParameters:
      Name  Flags
      rows  

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

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

  public boolean next();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.h2.index.MetaCursor this
         0: .line 39
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.index.MetaCursor.index:I
            aload 0 /* this */
            getfield org.h2.index.MetaCursor.rows:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            if_icmplt 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack: org.h2.index.MetaCursor
         1: aload 0 /* this */
            getfield org.h2.index.MetaCursor.rows:Ljava/util/ArrayList;
            aload 0 /* this */
            dup
            getfield org.h2.index.MetaCursor.index:I
            dup_x1
            iconst_1
            iadd
            putfield org.h2.index.MetaCursor.index:I
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast org.h2.result.Row
      StackMap locals: org.h2.index.MetaCursor
      StackMap stack: org.h2.index.MetaCursor org.h2.result.Row
         2: putfield org.h2.index.MetaCursor.current:Lorg/h2/result/Row;
         3: .line 40
            aload 0 /* this */
            getfield org.h2.index.MetaCursor.current:Lorg/h2/result/Row;
            ifnull 4
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_0
            ireturn
        end local 0 // org.h2.index.MetaCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/h2/index/MetaCursor;

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