public class org.h2.result.SimpleRow implements org.h2.result.SearchRow
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.result.SimpleRow
  super_class: java.lang.Object
{
  private long key;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private final org.h2.value.Value[] data;
    descriptor: [Lorg/h2/value/Value;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  public void <init>(org.h2.value.Value[]);
    descriptor: ([Lorg/h2/value/Value;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.SimpleRow this
        start local 1 // org.h2.value.Value[] data
         0: .line 20
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 21
            aload 0 /* this */
            aload 1 /* data */
            putfield org.h2.result.SimpleRow.data:[Lorg/h2/value/Value;
         2: .line 22
            return
        end local 1 // org.h2.value.Value[] data
        end local 0 // org.h2.result.SimpleRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/result/SimpleRow;
            0    3     1  data  [Lorg/h2/value/Value;
    MethodParameters:
      Name  Flags
      data  

  public int getColumnCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.SimpleRow this
         0: .line 26
            aload 0 /* this */
            getfield org.h2.result.SimpleRow.data:[Lorg/h2/value/Value;
            arraylength
            ireturn
        end local 0 // org.h2.result.SimpleRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleRow;

  public long getKey();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.result.SimpleRow this
         0: .line 31
            aload 0 /* this */
            getfield org.h2.result.SimpleRow.key:J
            lreturn
        end local 0 // org.h2.result.SimpleRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleRow;

  public void setKey(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.h2.result.SimpleRow this
        start local 1 // long key
         0: .line 36
            aload 0 /* this */
            lload 1 /* key */
            putfield org.h2.result.SimpleRow.key:J
         1: .line 37
            return
        end local 1 // long key
        end local 0 // org.h2.result.SimpleRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/result/SimpleRow;
            0    2     1   key  J
    MethodParameters:
      Name  Flags
      key   

  public void setKey(org.h2.result.SearchRow);
    descriptor: (Lorg/h2/result/SearchRow;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.result.SimpleRow this
        start local 1 // org.h2.result.SearchRow row
         0: .line 41
            aload 0 /* this */
            aload 1 /* row */
            invokeinterface org.h2.result.SearchRow.getKey:()J
            putfield org.h2.result.SimpleRow.key:J
         1: .line 42
            return
        end local 1 // org.h2.result.SearchRow row
        end local 0 // org.h2.result.SimpleRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/result/SimpleRow;
            0    2     1   row  Lorg/h2/result/SearchRow;
    MethodParameters:
      Name  Flags
      row   

  public void setValue(int, org.h2.value.Value);
    descriptor: (ILorg/h2/value/Value;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.h2.result.SimpleRow this
        start local 1 // int i
        start local 2 // org.h2.value.Value v
         0: .line 46
            aload 0 /* this */
            getfield org.h2.result.SimpleRow.data:[Lorg/h2/value/Value;
            iload 1 /* i */
            aload 2 /* v */
            aastore
         1: .line 47
            return
        end local 2 // org.h2.value.Value v
        end local 1 // int i
        end local 0 // org.h2.result.SimpleRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/result/SimpleRow;
            0    2     1     i  I
            0    2     2     v  Lorg/h2/value/Value;
    MethodParameters:
      Name  Flags
      i     
      v     

  public org.h2.value.Value getValue(int);
    descriptor: (I)Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.SimpleRow this
        start local 1 // int i
         0: .line 51
            aload 0 /* this */
            getfield org.h2.result.SimpleRow.data:[Lorg/h2/value/Value;
            iload 1 /* i */
            aaload
            areturn
        end local 1 // int i
        end local 0 // org.h2.result.SimpleRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleRow;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.h2.result.SimpleRow this
         0: .line 56
            aload 0 /* this */
            getfield org.h2.result.SimpleRow.key:J
            iconst_0
            aload 0 /* this */
            getfield org.h2.result.SimpleRow.data:[Lorg/h2/value/Value;
            invokestatic org.h2.result.RowImpl.toString:(JZ[Lorg/h2/value/Value;)Ljava/lang/String;
            areturn
        end local 0 // org.h2.result.SimpleRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/SimpleRow;

  public int getMemory();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // org.h2.result.SimpleRow this
         0: .line 61
            aload 0 /* this */
            getfield org.h2.result.SimpleRow.memory:I
            ifne 9
         1: .line 62
            aload 0 /* this */
            getfield org.h2.result.SimpleRow.data:[Lorg/h2/value/Value;
            arraylength
            istore 1 /* len */
        start local 1 // int len
         2: .line 63
            aload 0 /* this */
            bipush 24
            iload 1 /* len */
            bipush 8
            imul
            iadd
            putfield org.h2.result.SimpleRow.memory:I
         3: .line 64
            aload 0 /* this */
            getfield org.h2.result.SimpleRow.data:[Lorg/h2/value/Value;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 8
      StackMap locals: org.h2.result.SimpleRow int top int int org.h2.value.Value[]
      StackMap stack:
         4: aload 5
            iload 3
            aaload
            astore 2 /* v */
        start local 2 // org.h2.value.Value v
         5: .line 65
            aload 2 /* v */
            ifnull 7
         6: .line 66
            aload 0 /* this */
            dup
            getfield org.h2.result.SimpleRow.memory:I
            aload 2 /* v */
            invokevirtual org.h2.value.Value.getMemory:()I
            iadd
            putfield org.h2.result.SimpleRow.memory:I
        end local 2 // org.h2.value.Value v
         7: .line 64
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         8: iload 3
            iload 4
            if_icmplt 4
        end local 1 // int len
         9: .line 70
      StackMap locals: org.h2.result.SimpleRow
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.result.SimpleRow.memory:I
            ireturn
        end local 0 // org.h2.result.SimpleRow this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/h2/result/SimpleRow;
            2    9     1   len  I
            5    7     2     v  Lorg/h2/value/Value;
}
SourceFile: "SimpleRow.java"