public class io.vertx.sqlclient.impl.ArrayTuple extends java.util.ArrayList<java.lang.Object> implements io.vertx.sqlclient.Tuple
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.sqlclient.impl.ArrayTuple
  super_class: java.util.ArrayList
{
  public static io.vertx.sqlclient.Tuple EMPTY;
    descriptor: Lio/vertx/sqlclient/Tuple;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 32
            new io.vertx.sqlclient.impl.ArrayTuple
            dup
            iconst_0
            invokespecial io.vertx.sqlclient.impl.ArrayTuple.<init>:(I)V
            putstatic io.vertx.sqlclient.impl.ArrayTuple.EMPTY:Lio/vertx/sqlclient/Tuple;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int len
         0: .line 35
            aload 0 /* this */
            iload 1 /* len */
            invokespecial java.util.ArrayList.<init>:(I)V
         1: .line 36
            return
        end local 1 // int len
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1   len  I
    MethodParameters:
      Name  Flags
      len   

  public void <init>(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.util.Collection c
         0: .line 39
            aload 0 /* this */
            aload 1 /* c */
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
         1: .line 40
            return
        end local 1 // java.util.Collection c
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)V
    MethodParameters:
      Name  Flags
      c     

  public <T> T get(java.lang.Class<T>, );
    descriptor: (Ljava/lang/Class;I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Class type
        start local 2 // int pos
         0: .line 44
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 2 // int pos
        end local 1 // java.lang.Class type
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    1     1  type  Ljava/lang/Class<TT;>;
            0    1     2   pos  I
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Class<TT;>;I)TT;
    MethodParameters:
      Name  Flags
      type  
      pos   

  public <T> T[] getValues(java.lang.Class<T>, );
    descriptor: (Ljava/lang/Class;I)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Class type
        start local 2 // int pos
         0: .line 49
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 2 // int pos
        end local 1 // java.lang.Class type
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    1     1  type  Ljava/lang/Class<TT;>;
            0    1     2   pos  I
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Class<TT;>;I)[TT;
    MethodParameters:
      Name  Flags
      type  
      pos   

  public java.lang.Boolean getBoolean(int);
    descriptor: (I)Ljava/lang/Boolean;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 54
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 55
            aload 2 /* val */
            instanceof java.lang.Boolean
            ifeq 3
         2: .line 56
            aload 2 /* val */
            checkcast java.lang.Boolean
            areturn
         3: .line 58
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.Object getValue(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 63
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    1     1   pos  I
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.Short getShort(int);
    descriptor: (I)Ljava/lang/Short;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 68
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 69
            aload 2 /* val */
            instanceof java.lang.Short
            ifeq 3
         2: .line 70
            aload 2 /* val */
            checkcast java.lang.Short
            areturn
         3: .line 71
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* val */
            instanceof java.lang.Number
            ifeq 5
         4: .line 72
            aload 2 /* val */
            checkcast java.lang.Number
            invokevirtual java.lang.Number.shortValue:()S
            invokestatic java.lang.Short.valueOf:(S)Ljava/lang/Short;
            areturn
         5: .line 74
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    6     1   pos  I
            1    6     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.Integer getInteger(int);
    descriptor: (I)Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 79
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 80
            aload 2 /* val */
            instanceof java.lang.Integer
            ifeq 3
         2: .line 81
            aload 2 /* val */
            checkcast java.lang.Integer
            areturn
         3: .line 82
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* val */
            instanceof java.lang.Number
            ifeq 5
         4: .line 83
            aload 2 /* val */
            checkcast java.lang.Number
            invokevirtual java.lang.Number.intValue:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            areturn
         5: .line 85
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    6     1   pos  I
            1    6     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.Long getLong(int);
    descriptor: (I)Ljava/lang/Long;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 90
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 91
            aload 2 /* val */
            instanceof java.lang.Long
            ifeq 3
         2: .line 92
            aload 2 /* val */
            checkcast java.lang.Long
            areturn
         3: .line 93
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* val */
            instanceof java.lang.Number
            ifeq 5
         4: .line 94
            aload 2 /* val */
            checkcast java.lang.Number
            invokevirtual java.lang.Number.longValue:()J
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            areturn
         5: .line 96
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    6     1   pos  I
            1    6     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.Float getFloat(int);
    descriptor: (I)Ljava/lang/Float;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 101
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 102
            aload 2 /* val */
            instanceof java.lang.Float
            ifeq 3
         2: .line 103
            aload 2 /* val */
            checkcast java.lang.Float
            areturn
         3: .line 104
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* val */
            instanceof java.lang.Number
            ifeq 5
         4: .line 105
            aload 2 /* val */
            checkcast java.lang.Number
            invokevirtual java.lang.Number.floatValue:()F
            invokestatic java.lang.Float.valueOf:(F)Ljava/lang/Float;
            areturn
         5: .line 107
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    6     1   pos  I
            1    6     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.Double getDouble(int);
    descriptor: (I)Ljava/lang/Double;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 112
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 113
            aload 2 /* val */
            instanceof java.lang.Double
            ifeq 3
         2: .line 114
            aload 2 /* val */
            checkcast java.lang.Double
            areturn
         3: .line 115
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* val */
            instanceof java.lang.Number
            ifeq 5
         4: .line 116
            aload 2 /* val */
            checkcast java.lang.Number
            invokevirtual java.lang.Number.doubleValue:()D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            areturn
         5: .line 118
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    6     1   pos  I
            1    6     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.math.BigDecimal getBigDecimal(int);
    descriptor: (I)Ljava/math/BigDecimal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 123
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 124
            aload 2 /* val */
            instanceof java.math.BigDecimal
            ifeq 3
         2: .line 125
            aload 2 /* val */
            checkcast java.math.BigDecimal
            areturn
         3: .line 126
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* val */
            instanceof java.lang.Number
            ifeq 5
         4: .line 127
            new java.math.BigDecimal
            dup
            aload 2 /* val */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokespecial java.math.BigDecimal.<init>:(Ljava/lang/String;)V
            areturn
         5: .line 129
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    6     1   pos  I
            1    6     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.Integer[] getIntegerArray(int);
    descriptor: (I)[Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 134
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 135
            aload 2 /* val */
            instanceof java.lang.Integer[]
            ifeq 3
         2: .line 136
            aload 2 /* val */
            checkcast java.lang.Integer[]
            areturn
         3: .line 138
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.Boolean[] getBooleanArray(int);
    descriptor: (I)[Ljava/lang/Boolean;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 144
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 145
            aload 2 /* val */
            instanceof java.lang.Boolean[]
            ifeq 3
         2: .line 146
            aload 2 /* val */
            checkcast java.lang.Boolean[]
            areturn
         3: .line 148
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.Short[] getShortArray(int);
    descriptor: (I)[Ljava/lang/Short;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 154
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 155
            aload 2 /* val */
            instanceof java.lang.Short[]
            ifeq 3
         2: .line 156
            aload 2 /* val */
            checkcast java.lang.Short[]
            areturn
         3: .line 158
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.Long[] getLongArray(int);
    descriptor: (I)[Ljava/lang/Long;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 164
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 165
            aload 2 /* val */
            instanceof java.lang.Long[]
            ifeq 3
         2: .line 166
            aload 2 /* val */
            checkcast java.lang.Long[]
            areturn
         3: .line 168
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.Float[] getFloatArray(int);
    descriptor: (I)[Ljava/lang/Float;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 174
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 175
            aload 2 /* val */
            instanceof java.lang.Float[]
            ifeq 3
         2: .line 176
            aload 2 /* val */
            checkcast java.lang.Float[]
            areturn
         3: .line 178
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.Double[] getDoubleArray(int);
    descriptor: (I)[Ljava/lang/Double;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 184
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 185
            aload 2 /* val */
            instanceof java.lang.Double[]
            ifeq 3
         2: .line 186
            aload 2 /* val */
            checkcast java.lang.Double[]
            areturn
         3: .line 188
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.String[] getStringArray(int);
    descriptor: (I)[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 194
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 195
            aload 2 /* val */
            instanceof java.lang.String[]
            ifeq 3
         2: .line 196
            aload 2 /* val */
            checkcast java.lang.String[]
            areturn
         3: .line 198
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.time.LocalDate[] getLocalDateArray(int);
    descriptor: (I)[Ljava/time/LocalDate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 204
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 205
            aload 2 /* val */
            instanceof java.time.LocalDate[]
            ifeq 3
         2: .line 206
            aload 2 /* val */
            checkcast java.time.LocalDate[]
            areturn
         3: .line 208
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.time.LocalTime[] getLocalTimeArray(int);
    descriptor: (I)[Ljava/time/LocalTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 214
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 215
            aload 2 /* val */
            instanceof java.time.LocalTime[]
            ifeq 3
         2: .line 216
            aload 2 /* val */
            checkcast java.time.LocalTime[]
            areturn
         3: .line 218
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.time.OffsetTime[] getOffsetTimeArray(int);
    descriptor: (I)[Ljava/time/OffsetTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 224
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 225
            aload 2 /* val */
            instanceof java.time.OffsetTime[]
            ifeq 3
         2: .line 226
            aload 2 /* val */
            checkcast java.time.OffsetTime[]
            areturn
         3: .line 228
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.time.LocalDateTime[] getLocalDateTimeArray(int);
    descriptor: (I)[Ljava/time/LocalDateTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 234
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 235
            aload 2 /* val */
            instanceof java.time.LocalDateTime[]
            ifeq 3
         2: .line 236
            aload 2 /* val */
            checkcast java.time.LocalDateTime[]
            areturn
         3: .line 238
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.time.OffsetDateTime[] getOffsetDateTimeArray(int);
    descriptor: (I)[Ljava/time/OffsetDateTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 244
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 245
            aload 2 /* val */
            instanceof java.time.OffsetDateTime[]
            ifeq 3
         2: .line 246
            aload 2 /* val */
            checkcast java.time.OffsetDateTime[]
            areturn
         3: .line 248
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public io.vertx.core.buffer.Buffer[] getBufferArray(int);
    descriptor: (I)[Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 254
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 255
            aload 2 /* val */
            instanceof io.vertx.core.buffer.Buffer[]
            ifeq 3
         2: .line 256
            aload 2 /* val */
            checkcast io.vertx.core.buffer.Buffer[]
            areturn
         3: .line 258
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.util.UUID[] getUUIDArray(int);
    descriptor: (I)[Ljava/util/UUID;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 264
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 265
            aload 2 /* val */
            instanceof java.util.UUID[]
            ifeq 3
         2: .line 266
            aload 2 /* val */
            checkcast java.util.UUID[]
            areturn
         3: .line 268
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.lang.String getString(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 274
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 275
            aload 2 /* val */
            instanceof java.lang.String
            ifeq 3
         2: .line 276
            aload 2 /* val */
            checkcast java.lang.String
            areturn
         3: .line 278
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public io.vertx.core.buffer.Buffer getBuffer(int);
    descriptor: (I)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 283
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 284
            aload 2 /* val */
            instanceof io.vertx.core.buffer.Buffer
            ifeq 3
         2: .line 285
            aload 2 /* val */
            checkcast io.vertx.core.buffer.Buffer
            areturn
         3: .line 287
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.time.temporal.Temporal getTemporal(int);
    descriptor: (I)Ljava/time/temporal/Temporal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 292
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 293
            aload 2 /* val */
            instanceof java.time.temporal.Temporal
            ifeq 3
         2: .line 294
            aload 2 /* val */
            checkcast java.time.temporal.Temporal
            areturn
         3: .line 296
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.time.LocalDate getLocalDate(int);
    descriptor: (I)Ljava/time/LocalDate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 301
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 302
            aload 2 /* val */
            instanceof java.time.LocalDate
            ifeq 3
         2: .line 303
            aload 2 /* val */
            checkcast java.time.LocalDate
            areturn
         3: .line 305
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.time.LocalTime getLocalTime(int);
    descriptor: (I)Ljava/time/LocalTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 310
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 311
            aload 2 /* val */
            instanceof java.time.LocalTime
            ifeq 3
         2: .line 312
            aload 2 /* val */
            checkcast java.time.LocalTime
            areturn
         3: .line 314
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.time.LocalDateTime getLocalDateTime(int);
    descriptor: (I)Ljava/time/LocalDateTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 319
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 320
            aload 2 /* val */
            instanceof java.time.LocalDateTime
            ifeq 3
         2: .line 321
            aload 2 /* val */
            checkcast java.time.LocalDateTime
            areturn
         3: .line 323
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.time.OffsetTime getOffsetTime(int);
    descriptor: (I)Ljava/time/OffsetTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 328
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 329
            aload 2 /* val */
            instanceof java.time.OffsetTime
            ifeq 3
         2: .line 330
            aload 2 /* val */
            checkcast java.time.OffsetTime
            areturn
         3: .line 332
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.time.OffsetDateTime getOffsetDateTime(int);
    descriptor: (I)Ljava/time/OffsetDateTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 337
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 338
            aload 2 /* val */
            instanceof java.time.OffsetDateTime
            ifeq 3
         2: .line 339
            aload 2 /* val */
            checkcast java.time.OffsetDateTime
            areturn
         3: .line 341
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public java.util.UUID getUUID(int);
    descriptor: (I)Ljava/util/UUID;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // int pos
         0: .line 346
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.get:(I)Ljava/lang/Object;
            astore 2 /* val */
        start local 2 // java.lang.Object val
         1: .line 347
            aload 2 /* val */
            instanceof java.util.UUID
            ifeq 3
         2: .line 348
            aload 2 /* val */
            checkcast java.util.UUID
            areturn
         3: .line 350
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.Object val
        end local 1 // int pos
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    4     1   pos  I
            1    4     2   val  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      pos   

  public io.vertx.sqlclient.Tuple addBoolean(java.lang.Boolean);
    descriptor: (Ljava/lang/Boolean;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Boolean value
         0: .line 355
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 356
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Boolean value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/lang/Boolean;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Object value
         0: .line 361
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 362
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addShort(java.lang.Short);
    descriptor: (Ljava/lang/Short;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Short value
         0: .line 367
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 368
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Short value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/lang/Short;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addInteger(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Integer value
         0: .line 373
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 374
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Integer value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/lang/Integer;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addLong(java.lang.Long);
    descriptor: (Ljava/lang/Long;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Long value
         0: .line 379
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 380
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Long value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/lang/Long;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addFloat(java.lang.Float);
    descriptor: (Ljava/lang/Float;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Float value
         0: .line 385
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 386
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Float value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/lang/Float;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addDouble(java.lang.Double);
    descriptor: (Ljava/lang/Double;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Double value
         0: .line 391
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 392
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Double value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/lang/Double;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addString(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.String value
         0: .line 397
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 398
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addBuffer(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // io.vertx.core.buffer.Buffer value
         0: .line 403
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 404
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.buffer.Buffer value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addTemporal(java.time.temporal.Temporal);
    descriptor: (Ljava/time/temporal/Temporal;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.time.temporal.Temporal value
         0: .line 409
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 410
            aload 0 /* this */
            areturn
        end local 1 // java.time.temporal.Temporal value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/time/temporal/Temporal;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addLocalDate(java.time.LocalDate);
    descriptor: (Ljava/time/LocalDate;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.time.LocalDate value
         0: .line 415
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 416
            aload 0 /* this */
            areturn
        end local 1 // java.time.LocalDate value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/time/LocalDate;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addLocalTime(java.time.LocalTime);
    descriptor: (Ljava/time/LocalTime;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.time.LocalTime value
         0: .line 421
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 422
            aload 0 /* this */
            areturn
        end local 1 // java.time.LocalTime value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/time/LocalTime;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addLocalDateTime(java.time.LocalDateTime);
    descriptor: (Ljava/time/LocalDateTime;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.time.LocalDateTime value
         0: .line 427
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 428
            aload 0 /* this */
            areturn
        end local 1 // java.time.LocalDateTime value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/time/LocalDateTime;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addOffsetTime(java.time.OffsetTime);
    descriptor: (Ljava/time/OffsetTime;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.time.OffsetTime value
         0: .line 433
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 434
            aload 0 /* this */
            areturn
        end local 1 // java.time.OffsetTime value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/time/OffsetTime;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addOffsetDateTime(java.time.OffsetDateTime);
    descriptor: (Ljava/time/OffsetDateTime;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.time.OffsetDateTime value
         0: .line 439
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 440
            aload 0 /* this */
            areturn
        end local 1 // java.time.OffsetDateTime value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/time/OffsetDateTime;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addUUID(java.util.UUID);
    descriptor: (Ljava/util/UUID;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.util.UUID value
         0: .line 445
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 446
            aload 0 /* this */
            areturn
        end local 1 // java.util.UUID value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/util/UUID;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addBigDecimal(java.math.BigDecimal);
    descriptor: (Ljava/math/BigDecimal;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.math.BigDecimal value
         0: .line 451
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 452
            aload 0 /* this */
            areturn
        end local 1 // java.math.BigDecimal value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  Ljava/math/BigDecimal;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addIntegerArray(java.lang.Integer[]);
    descriptor: ([Ljava/lang/Integer;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Integer[] value
         0: .line 457
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 458
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Integer[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/lang/Integer;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addBooleanArray(java.lang.Boolean[]);
    descriptor: ([Ljava/lang/Boolean;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Boolean[] value
         0: .line 463
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 464
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Boolean[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/lang/Boolean;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addShortArray(java.lang.Short[]);
    descriptor: ([Ljava/lang/Short;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Short[] value
         0: .line 469
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 470
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Short[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/lang/Short;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addLongArray(java.lang.Long[]);
    descriptor: ([Ljava/lang/Long;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Long[] value
         0: .line 475
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 476
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Long[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/lang/Long;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addFloatArray(java.lang.Float[]);
    descriptor: ([Ljava/lang/Float;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Float[] value
         0: .line 481
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 482
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Float[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/lang/Float;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addDoubleArray(java.lang.Double[]);
    descriptor: ([Ljava/lang/Double;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Double[] value
         0: .line 487
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 488
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Double[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/lang/Double;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addStringArray(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.String[] value
         0: .line 493
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 494
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/lang/String;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addLocalDateArray(java.time.LocalDate[]);
    descriptor: ([Ljava/time/LocalDate;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.time.LocalDate[] value
         0: .line 499
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 500
            aload 0 /* this */
            areturn
        end local 1 // java.time.LocalDate[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/time/LocalDate;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addLocalTimeArray(java.time.LocalTime[]);
    descriptor: ([Ljava/time/LocalTime;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.time.LocalTime[] value
         0: .line 505
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 506
            aload 0 /* this */
            areturn
        end local 1 // java.time.LocalTime[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/time/LocalTime;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addOffsetTimeArray(java.time.OffsetTime[]);
    descriptor: ([Ljava/time/OffsetTime;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.time.OffsetTime[] value
         0: .line 511
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 512
            aload 0 /* this */
            areturn
        end local 1 // java.time.OffsetTime[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/time/OffsetTime;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addLocalDateTimeArray(java.time.LocalDateTime[]);
    descriptor: ([Ljava/time/LocalDateTime;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.time.LocalDateTime[] value
         0: .line 517
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 518
            aload 0 /* this */
            areturn
        end local 1 // java.time.LocalDateTime[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/time/LocalDateTime;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addOffsetDateTimeArray(java.time.OffsetDateTime[]);
    descriptor: ([Ljava/time/OffsetDateTime;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.time.OffsetDateTime[] value
         0: .line 523
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 524
            aload 0 /* this */
            areturn
        end local 1 // java.time.OffsetDateTime[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/time/OffsetDateTime;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addBufferArray(io.vertx.core.buffer.Buffer[]);
    descriptor: ([Lio/vertx/core/buffer/Buffer;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // io.vertx.core.buffer.Buffer[] value
         0: .line 529
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 530
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.buffer.Buffer[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Lio/vertx/core/buffer/Buffer;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.sqlclient.Tuple addUUIDArray(java.util.UUID[]);
    descriptor: ([Ljava/util/UUID;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.util.UUID[] value
         0: .line 535
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 536
            aload 0 /* this */
            areturn
        end local 1 // java.util.UUID[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/util/UUID;
    MethodParameters:
       Name  Flags
      value  

  public <T> io.vertx.sqlclient.Tuple addValues(T[]);
    descriptor: ([Ljava/lang/Object;)Lio/vertx/sqlclient/Tuple;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.sqlclient.impl.ArrayTuple this
        start local 1 // java.lang.Object[] value
         0: .line 541
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.sqlclient.impl.ArrayTuple.add:(Ljava/lang/Object;)Z
            pop
         1: .line 542
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object[] value
        end local 0 // io.vertx.sqlclient.impl.ArrayTuple this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/sqlclient/impl/ArrayTuple;
            0    2     1  value  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)Lio/vertx/sqlclient/Tuple;
    MethodParameters:
       Name  Flags
      value  
}
Signature: Ljava/util/ArrayList<Ljava/lang/Object;>;Lio/vertx/sqlclient/Tuple;
SourceFile: "ArrayTuple.java"