public class org.h2.result.RowImpl implements org.h2.result.Row
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.result.RowImpl
  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

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

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

  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.RowImpl this
        start local 1 // org.h2.result.SearchRow row
         0: .line 29
            aload 0 /* this */
            aload 1 /* row */
            invokeinterface org.h2.result.SearchRow.getKey:()J
            invokevirtual org.h2.result.RowImpl.setKey:(J)V
         1: .line 30
            return
        end local 1 // org.h2.result.SearchRow row
        end local 0 // org.h2.result.RowImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/result/RowImpl;
            0    2     1   row  Lorg/h2/result/SearchRow;
    MethodParameters:
      Name  Flags
      row   

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

  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.RowImpl this
        start local 1 // long key
         0: .line 39
            aload 0 /* this */
            lload 1 /* key */
            putfield org.h2.result.RowImpl.key:J
         1: .line 40
            return
        end local 1 // long key
        end local 0 // org.h2.result.RowImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/result/RowImpl;
            0    2     1   key  J
    MethodParameters:
      Name  Flags
      key   

  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.RowImpl this
        start local 1 // int i
         0: .line 44
            iload 1 /* i */
            iconst_m1
            if_icmpne 1
            aload 0 /* this */
            getfield org.h2.result.RowImpl.key:J
            invokestatic org.h2.value.ValueLong.get:(J)Lorg/h2/value/ValueLong;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.h2.result.RowImpl.data:[Lorg/h2/value/Value;
            iload 1 /* i */
            aaload
      StackMap locals:
      StackMap stack: org.h2.value.Value
         2: areturn
        end local 1 // int i
        end local 0 // org.h2.result.RowImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/result/RowImpl;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public int getByteCount(org.h2.store.Data);
    descriptor: (Lorg/h2/store/Data;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.h2.result.RowImpl this
        start local 1 // org.h2.store.Data dummy
         0: .line 55
            iconst_0
            istore 2 /* size */
        start local 2 // int size
         1: .line 56
            aload 0 /* this */
            getfield org.h2.result.RowImpl.data:[Lorg/h2/value/Value;
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 5
      StackMap locals: org.h2.result.RowImpl org.h2.store.Data int top int int org.h2.value.Value[]
      StackMap stack:
         2: aload 6
            iload 4
            aaload
            astore 3 /* v */
        start local 3 // org.h2.value.Value v
         3: .line 57
            iload 2 /* size */
            aload 1 /* dummy */
            aload 3 /* v */
            invokevirtual org.h2.store.Data.getValueLen:(Lorg/h2/value/Value;)I
            iadd
            istore 2 /* size */
        end local 3 // org.h2.value.Value v
         4: .line 56
            iinc 4 1
      StackMap locals:
      StackMap stack:
         5: iload 4
            iload 5
            if_icmplt 2
         6: .line 59
            iload 2 /* size */
            ireturn
        end local 2 // int size
        end local 1 // org.h2.store.Data dummy
        end local 0 // org.h2.result.RowImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/h2/result/RowImpl;
            0    7     1  dummy  Lorg/h2/store/Data;
            1    7     2   size  I
            3    4     3      v  Lorg/h2/value/Value;
    MethodParameters:
       Name  Flags
      dummy  

  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.RowImpl this
        start local 1 // int i
        start local 2 // org.h2.value.Value v
         0: .line 64
            iload 1 /* i */
            iconst_m1
            if_icmpne 3
         1: .line 65
            aload 0 /* this */
            aload 2 /* v */
            invokevirtual org.h2.value.Value.getLong:()J
            putfield org.h2.result.RowImpl.key:J
         2: .line 66
            goto 4
         3: .line 67
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.result.RowImpl.data:[Lorg/h2/value/Value;
            iload 1 /* i */
            aload 2 /* v */
            aastore
         4: .line 69
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.h2.value.Value v
        end local 1 // int i
        end local 0 // org.h2.result.RowImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/h2/result/RowImpl;
            0    5     1     i  I
            0    5     2     v  Lorg/h2/value/Value;
    MethodParameters:
      Name  Flags
      i     
      v     

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.RowImpl this
         0: .line 73
            aload 0 /* this */
            getfield org.h2.result.RowImpl.data:[Lorg/h2/value/Value;
            ifnonnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.h2.result.RowImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/result/RowImpl;

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

  public int getMemory();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=1
        start local 0 // org.h2.result.RowImpl this
         0: .line 83
            aload 0 /* this */
            getfield org.h2.result.RowImpl.memory:I
            iconst_m1
            if_icmpeq 2
         1: .line 84
            aload 0 /* this */
            getfield org.h2.result.RowImpl.memory:I
            ireturn
         2: .line 86
      StackMap locals:
      StackMap stack:
            bipush 40
            istore 1 /* m */
        start local 1 // int m
         3: .line 87
            aload 0 /* this */
            getfield org.h2.result.RowImpl.data:[Lorg/h2/value/Value;
            ifnull 12
         4: .line 88
            aload 0 /* this */
            getfield org.h2.result.RowImpl.data:[Lorg/h2/value/Value;
            arraylength
            istore 2 /* len */
        start local 2 // int len
         5: .line 89
            iload 1 /* m */
            bipush 24
            iload 2 /* len */
            bipush 8
            imul
            iadd
            iadd
            istore 1 /* m */
         6: .line 90
            aload 0 /* this */
            getfield org.h2.result.RowImpl.data:[Lorg/h2/value/Value;
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 11
      StackMap locals: org.h2.result.RowImpl int int top int int org.h2.value.Value[]
      StackMap stack:
         7: aload 6
            iload 4
            aaload
            astore 3 /* v */
        start local 3 // org.h2.value.Value v
         8: .line 91
            aload 3 /* v */
            ifnull 10
         9: .line 92
            iload 1 /* m */
            aload 3 /* v */
            invokevirtual org.h2.value.Value.getMemory:()I
            iadd
            istore 1 /* m */
        end local 3 // org.h2.value.Value v
        10: .line 90
      StackMap locals:
      StackMap stack:
            iinc 4 1
      StackMap locals:
      StackMap stack:
        11: iload 4
            iload 5
            if_icmplt 7
        end local 2 // int len
        12: .line 96
      StackMap locals: org.h2.result.RowImpl int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* m */
            putfield org.h2.result.RowImpl.memory:I
        13: .line 97
            iload 1 /* m */
            ireturn
        end local 1 // int m
        end local 0 // org.h2.result.RowImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/h2/result/RowImpl;
            3   14     1     m  I
            5   12     2   len  I
            8   10     3     v  Lorg/h2/value/Value;

  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.RowImpl this
         0: .line 102
            aload 0 /* this */
            getfield org.h2.result.RowImpl.key:J
            aload 0 /* this */
            getfield org.h2.result.RowImpl.deleted:Z
            aload 0 /* this */
            getfield org.h2.result.RowImpl.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.RowImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/RowImpl;

  static java.lang.String toString(long, boolean, org.h2.value.Value[]);
    descriptor: (JZ[Lorg/h2/value/Value;)Ljava/lang/String;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // long key
        start local 2 // boolean isDeleted
        start local 3 // org.h2.value.Value[] data
         0: .line 114
            new java.lang.StringBuilder
            dup
            ldc "( /* key:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            lload 0 /* key */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            astore 4 /* builder */
        start local 4 // java.lang.StringBuilder builder
         1: .line 115
            iload 2 /* isDeleted */
            ifeq 3
         2: .line 116
            aload 4 /* builder */
            ldc " deleted"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 118
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 4 /* builder */
            ldc " */ "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         4: .line 119
            aload 3 /* data */
            ifnull 16
         5: .line 120
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         6: aload 3 /* data */
            arraylength
            istore 6 /* length */
        start local 6 // int length
         7: goto 15
         8: .line 121
      StackMap locals: int int
      StackMap stack:
            iload 5 /* i */
            ifle 10
         9: .line 122
            aload 4 /* builder */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        10: .line 124
      StackMap locals:
      StackMap stack:
            aload 3 /* data */
            iload 5 /* i */
            aaload
            astore 7 /* v */
        start local 7 // org.h2.value.Value v
        11: .line 125
            aload 4 /* builder */
            aload 7 /* v */
            ifnonnull 12
            ldc "null"
            goto 13
      StackMap locals: long int org.h2.value.Value[] java.lang.StringBuilder int int org.h2.value.Value
      StackMap stack: java.lang.StringBuilder
        12: aload 7 /* v */
            invokevirtual org.h2.value.Value.getTraceSQL:()Ljava/lang/String;
      StackMap locals: long int org.h2.value.Value[] java.lang.StringBuilder int int org.h2.value.Value
      StackMap stack: java.lang.StringBuilder java.lang.String
        13: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 7 // org.h2.value.Value v
        14: .line 120
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 5 /* i */
            iload 6 /* length */
            if_icmplt 8
        end local 6 // int length
        end local 5 // int i
        16: .line 128
      StackMap locals:
      StackMap stack:
            aload 4 /* builder */
            bipush 41
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 4 // java.lang.StringBuilder builder
        end local 3 // org.h2.value.Value[] data
        end local 2 // boolean isDeleted
        end local 0 // long key
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0        key  J
            0   17     2  isDeleted  Z
            0   17     3       data  [Lorg/h2/value/Value;
            1   17     4    builder  Ljava/lang/StringBuilder;
            6   16     5          i  I
            7   16     6     length  I
           11   14     7          v  Lorg/h2/value/Value;
    MethodParameters:
           Name  Flags
      key        
      isDeleted  
      data       

  public void setDeleted(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.result.RowImpl this
        start local 1 // boolean deleted
         0: .line 133
            aload 0 /* this */
            iload 1 /* deleted */
            putfield org.h2.result.RowImpl.deleted:Z
         1: .line 134
            return
        end local 1 // boolean deleted
        end local 0 // org.h2.result.RowImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/h2/result/RowImpl;
            0    2     1  deleted  Z
    MethodParameters:
         Name  Flags
      deleted  

  public boolean isDeleted();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.RowImpl this
         0: .line 138
            aload 0 /* this */
            getfield org.h2.result.RowImpl.deleted:Z
            ireturn
        end local 0 // org.h2.result.RowImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/RowImpl;

  public org.h2.value.Value[] getValueList();
    descriptor: ()[Lorg/h2/value/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.result.RowImpl this
         0: .line 143
            aload 0 /* this */
            getfield org.h2.result.RowImpl.data:[Lorg/h2/value/Value;
            areturn
        end local 0 // org.h2.result.RowImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/result/RowImpl;

  public boolean hasSharedData(org.h2.result.Row);
    descriptor: (Lorg/h2/result/Row;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.h2.result.RowImpl this
        start local 1 // org.h2.result.Row other
         0: .line 148
            aload 1 /* other */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc Lorg/h2/result/RowImpl;
            if_acmpne 4
         1: .line 149
            aload 1 /* other */
            checkcast org.h2.result.RowImpl
            astore 2 /* o */
        start local 2 // org.h2.result.RowImpl o
         2: .line 150
            aload 0 /* this */
            getfield org.h2.result.RowImpl.data:[Lorg/h2/value/Value;
            aload 2 /* o */
            getfield org.h2.result.RowImpl.data:[Lorg/h2/value/Value;
            if_acmpne 3
            iconst_1
            ireturn
      StackMap locals: org.h2.result.RowImpl
      StackMap stack:
         3: iconst_0
            ireturn
        end local 2 // org.h2.result.RowImpl o
         4: .line 152
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // org.h2.result.Row other
        end local 0 // org.h2.result.RowImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/h2/result/RowImpl;
            0    5     1  other  Lorg/h2/result/Row;
            2    4     2      o  Lorg/h2/result/RowImpl;
    MethodParameters:
       Name  Flags
      other  
}
SourceFile: "RowImpl.java"