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

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

  private final int virtualColumnCount;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private org.h2.value.Value data;
    descriptor: Lorg/h2/value/Value;
    flags: (0x0002) ACC_PRIVATE

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

  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.SimpleRowValue this
        start local 1 // org.h2.result.SearchRow row
         0: .line 27
            aload 0 /* this */
            aload 1 /* row */
            invokeinterface org.h2.result.SearchRow.getKey:()J
            putfield org.h2.result.SimpleRowValue.key:J
         1: .line 28
            return
        end local 1 // org.h2.result.SearchRow row
        end local 0 // org.h2.result.SimpleRowValue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/result/SimpleRowValue;
            0    2     1   row  Lorg/h2/result/SearchRow;
    MethodParameters:
      Name  Flags
      row   

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

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

  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.SimpleRowValue this
        start local 1 // long key
         0: .line 42
            aload 0 /* this */
            lload 1 /* key */
            putfield org.h2.result.SimpleRowValue.key:J
         1: .line 43
            return
        end local 1 // long key
        end local 0 // org.h2.result.SimpleRowValue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/result/SimpleRowValue;
            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.SimpleRowValue this
        start local 1 // int idx
         0: .line 47
            iload 1 /* idx */
            aload 0 /* this */
            getfield org.h2.result.SimpleRowValue.index:I
            if_icmpne 1
            aload 0 /* this */
            getfield org.h2.result.SimpleRowValue.data:Lorg/h2/value/Value;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: org.h2.value.Value
         2: areturn
        end local 1 // int idx
        end local 0 // org.h2.result.SimpleRowValue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/result/SimpleRowValue;
            0    3     1   idx  I
    MethodParameters:
      Name  Flags
      idx   

  public void setValue(int, org.h2.value.Value);
    descriptor: (ILorg/h2/value/Value;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.h2.result.SimpleRowValue this
        start local 1 // int idx
        start local 2 // org.h2.value.Value v
         0: .line 52
            aload 0 /* this */
            iload 1 /* idx */
            putfield org.h2.result.SimpleRowValue.index:I
         1: .line 53
            aload 0 /* this */
            aload 2 /* v */
            putfield org.h2.result.SimpleRowValue.data:Lorg/h2/value/Value;
         2: .line 54
            return
        end local 2 // org.h2.value.Value v
        end local 1 // int idx
        end local 0 // org.h2.result.SimpleRowValue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/result/SimpleRowValue;
            0    3     1   idx  I
            0    3     2     v  Lorg/h2/value/Value;
    MethodParameters:
      Name  Flags
      idx   
      v     

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.h2.result.SimpleRowValue this
         0: .line 58
            new java.lang.StringBuilder
            dup
            ldc "( /* "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.h2.result.SimpleRowValue.key:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " */ "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.h2.result.SimpleRowValue.data:Lorg/h2/value/Value;
            ifnonnull 2
         1: .line 59
            ldc "null"
            goto 3
      StackMap locals:
      StackMap stack: java.lang.StringBuilder
         2: aload 0 /* this */
            getfield org.h2.result.SimpleRowValue.data:Lorg/h2/value/Value;
            invokevirtual org.h2.value.Value.getTraceSQL:()Ljava/lang/String;
      StackMap locals: org.h2.result.SimpleRowValue
      StackMap stack: java.lang.StringBuilder java.lang.String
         3: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " )"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 58
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.h2.result.SimpleRowValue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/h2/result/SimpleRowValue;

  public int getMemory();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.result.SimpleRowValue this
         0: .line 64
            bipush 24
            aload 0 /* this */
            getfield org.h2.result.SimpleRowValue.data:Lorg/h2/value/Value;
            ifnonnull 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack: int
         1: aload 0 /* this */
            getfield org.h2.result.SimpleRowValue.data:Lorg/h2/value/Value;
            invokevirtual org.h2.value.Value.getMemory:()I
      StackMap locals: org.h2.result.SimpleRowValue
      StackMap stack: int int
         2: iadd
            ireturn
        end local 0 // org.h2.result.SimpleRowValue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/result/SimpleRowValue;
}
SourceFile: "SimpleRowValue.java"