public interface io.vertx.redis.client.Request
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.redis.client.Request
  super_class: java.lang.Object
{
  public static io.vertx.redis.client.Request cmd(io.vertx.redis.client.Command);
    descriptor: (Lio/vertx/redis/client/Command;)Lio/vertx/redis/client/Request;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.redis.client.Command command
         0: .line 48
            new io.vertx.redis.client.impl.RequestImpl
            dup
            aload 0 /* command */
            invokespecial io.vertx.redis.client.impl.RequestImpl.<init>:(Lio/vertx/redis/client/Command;)V
            areturn
        end local 0 // io.vertx.redis.client.Command command
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  command  Lio/vertx/redis/client/Command;
    MethodParameters:
         Name  Flags
      command  

  public abstract io.vertx.redis.client.Request arg(byte[]);
    descriptor: ([B)Lio/vertx/redis/client/Request;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    MethodParameters:
      Name  Flags
      arg   

  public io.vertx.redis.client.Request arg(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/redis/client/Request;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.redis.client.Request this
        start local 1 // java.lang.String arg
         0: .line 65
            aload 1 /* arg */
            ifnonnull 2
         1: .line 66
            aload 0 /* this */
            invokeinterface io.vertx.redis.client.Request.nullArg:()Lio/vertx/redis/client/Request;
            areturn
         2: .line 68
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* arg */
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            invokeinterface io.vertx.redis.client.Request.arg:([B)Lio/vertx/redis/client/Request;
            areturn
        end local 1 // java.lang.String arg
        end local 0 // io.vertx.redis.client.Request this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/redis/client/Request;
            0    3     1   arg  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      arg   

  public io.vertx.redis.client.Request arg(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/redis/client/Request;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.redis.client.Request this
        start local 1 // java.lang.String arg
        start local 2 // java.lang.String enc
         0: .line 77
            aload 1 /* arg */
            ifnonnull 2
         1: .line 78
            aload 0 /* this */
            invokeinterface io.vertx.redis.client.Request.nullArg:()Lio/vertx/redis/client/Request;
            areturn
         2: .line 80
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* arg */
            aload 2 /* enc */
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            invokeinterface io.vertx.redis.client.Request.arg:([B)Lio/vertx/redis/client/Request;
            areturn
        end local 2 // java.lang.String enc
        end local 1 // java.lang.String arg
        end local 0 // io.vertx.redis.client.Request this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/redis/client/Request;
            0    3     1   arg  Ljava/lang/String;
            0    3     2   enc  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      arg   
      enc   

  public abstract io.vertx.redis.client.Request arg(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/redis/client/Request;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      arg   

  public abstract io.vertx.redis.client.Request arg(long);
    descriptor: (J)Lio/vertx/redis/client/Request;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      arg   

  public io.vertx.redis.client.Request arg(int);
    descriptor: (I)Lio/vertx/redis/client/Request;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.redis.client.Request this
        start local 1 // int arg
         0: .line 104
            aload 0 /* this */
            iload 1 /* arg */
            i2l
            invokeinterface io.vertx.redis.client.Request.arg:(J)Lio/vertx/redis/client/Request;
            pop
         1: .line 105
            aload 0 /* this */
            areturn
        end local 1 // int arg
        end local 0 // io.vertx.redis.client.Request this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/redis/client/Request;
            0    2     1   arg  I
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    MethodParameters:
      Name  Flags
      arg   

  public io.vertx.redis.client.Request arg(short);
    descriptor: (S)Lio/vertx/redis/client/Request;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.redis.client.Request this
        start local 1 // short arg
         0: .line 115
            aload 0 /* this */
            iload 1 /* arg */
            i2l
            invokeinterface io.vertx.redis.client.Request.arg:(J)Lio/vertx/redis/client/Request;
            pop
         1: .line 116
            aload 0 /* this */
            areturn
        end local 1 // short arg
        end local 0 // io.vertx.redis.client.Request this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/redis/client/Request;
            0    2     1   arg  S
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    MethodParameters:
      Name  Flags
      arg   

  public io.vertx.redis.client.Request arg(byte);
    descriptor: (B)Lio/vertx/redis/client/Request;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.redis.client.Request this
        start local 1 // byte arg
         0: .line 126
            aload 0 /* this */
            iload 1 /* arg */
            i2l
            invokeinterface io.vertx.redis.client.Request.arg:(J)Lio/vertx/redis/client/Request;
            pop
         1: .line 127
            aload 0 /* this */
            areturn
        end local 1 // byte arg
        end local 0 // io.vertx.redis.client.Request this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/redis/client/Request;
            0    2     1   arg  B
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    MethodParameters:
      Name  Flags
      arg   

  public abstract io.vertx.redis.client.Request arg(boolean);
    descriptor: (Z)Lio/vertx/redis/client/Request;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      arg   

  public io.vertx.redis.client.Request arg(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)Lio/vertx/redis/client/Request;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // io.vertx.redis.client.Request this
        start local 1 // io.vertx.core.json.JsonObject arg
         0: .line 146
            aload 1 /* arg */
            ifnonnull 3
         1: .line 147
            aload 0 /* this */
            invokeinterface io.vertx.redis.client.Request.nullArg:()Lio/vertx/redis/client/Request;
            pop
         2: .line 148
            goto 17
         3: .line 149
      StackMap locals:
      StackMap stack:
            aload 1 /* arg */
            invokevirtual io.vertx.core.json.JsonObject.iterator:()Ljava/util/Iterator;
            astore 3
            goto 16
      StackMap locals: io.vertx.redis.client.Request io.vertx.core.json.JsonObject top java.util.Iterator
      StackMap stack:
         4: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 2 /* kv */
        start local 2 // java.util.Map$Entry kv
         5: .line 150
            aload 0 /* this */
            aload 2 /* kv */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            invokeinterface io.vertx.redis.client.Request.arg:(Ljava/lang/String;)Lio/vertx/redis/client/Request;
            pop
         6: .line 151
            aload 2 /* kv */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            astore 4 /* val */
        start local 4 // java.lang.Object val
         7: .line 153
            aload 4 /* val */
            ifnonnull 10
         8: .line 154
            aload 0 /* this */
            invokeinterface io.vertx.redis.client.Request.nullArg:()Lio/vertx/redis/client/Request;
            pop
         9: .line 155
            goto 16
      StackMap locals: io.vertx.redis.client.Request io.vertx.core.json.JsonObject java.util.Map$Entry java.util.Iterator java.lang.Object
      StackMap stack:
        10: aload 4 /* val */
            instanceof io.vertx.core.buffer.Buffer
            ifeq 13
        11: .line 156
            aload 0 /* this */
            aload 4 /* val */
            checkcast io.vertx.core.buffer.Buffer
            invokeinterface io.vertx.redis.client.Request.arg:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/redis/client/Request;
            pop
        12: .line 157
            goto 16
      StackMap locals:
      StackMap stack:
        13: aload 4 /* val */
            instanceof io.vertx.core.json.JsonArray
            ifne 14
            aload 4 /* val */
            instanceof io.vertx.core.json.JsonObject
            ifeq 15
        14: .line 158
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Graph objects are not allowed as values, only simple types"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 160
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* val */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokeinterface io.vertx.redis.client.Request.arg:(Ljava/lang/String;)Lio/vertx/redis/client/Request;
            pop
        end local 4 // java.lang.Object val
        end local 2 // java.util.Map$Entry kv
        16: .line 149
      StackMap locals: io.vertx.redis.client.Request io.vertx.core.json.JsonObject top java.util.Iterator
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        17: .line 164
      StackMap locals: io.vertx.redis.client.Request io.vertx.core.json.JsonObject
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.json.JsonObject arg
        end local 0 // io.vertx.redis.client.Request this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lio/vertx/redis/client/Request;
            0   18     1   arg  Lio/vertx/core/json/JsonObject;
            5   16     2    kv  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/Object;>;
            7   16     4   val  Ljava/lang/Object;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      arg   

  public io.vertx.redis.client.Request arg(io.vertx.core.json.JsonArray);
    descriptor: (Lio/vertx/core/json/JsonArray;)Lio/vertx/redis/client/Request;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.vertx.redis.client.Request this
        start local 1 // io.vertx.core.json.JsonArray arg
         0: .line 176
            aload 1 /* arg */
            ifnonnull 3
         1: .line 177
            aload 0 /* this */
            invokeinterface io.vertx.redis.client.Request.nullArg:()Lio/vertx/redis/client/Request;
            pop
         2: .line 178
            goto 15
         3: .line 179
      StackMap locals:
      StackMap stack:
            aload 1 /* arg */
            invokevirtual io.vertx.core.json.JsonArray.iterator:()Ljava/util/Iterator;
            astore 3
            goto 14
      StackMap locals: io.vertx.redis.client.Request io.vertx.core.json.JsonArray top java.util.Iterator
      StackMap stack:
         4: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 2 /* el */
        start local 2 // java.lang.Object el
         5: .line 180
            aload 2 /* el */
            ifnonnull 8
         6: .line 181
            aload 0 /* this */
            invokeinterface io.vertx.redis.client.Request.nullArg:()Lio/vertx/redis/client/Request;
            pop
         7: .line 182
            goto 14
      StackMap locals: io.vertx.redis.client.Request io.vertx.core.json.JsonArray java.lang.Object java.util.Iterator
      StackMap stack:
         8: aload 2 /* el */
            instanceof io.vertx.core.buffer.Buffer
            ifeq 11
         9: .line 183
            aload 0 /* this */
            aload 2 /* el */
            checkcast io.vertx.core.buffer.Buffer
            invokeinterface io.vertx.redis.client.Request.arg:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/redis/client/Request;
            pop
        10: .line 184
            goto 14
      StackMap locals:
      StackMap stack:
        11: aload 2 /* el */
            instanceof io.vertx.core.json.JsonArray
            ifne 12
            aload 2 /* el */
            instanceof io.vertx.core.json.JsonObject
            ifeq 13
        12: .line 185
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Graph objects are not allowed as elements, only simple types"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* el */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokeinterface io.vertx.redis.client.Request.arg:(Ljava/lang/String;)Lio/vertx/redis/client/Request;
            pop
        end local 2 // java.lang.Object el
        14: .line 179
      StackMap locals: io.vertx.redis.client.Request io.vertx.core.json.JsonArray top java.util.Iterator
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        15: .line 191
      StackMap locals: io.vertx.redis.client.Request io.vertx.core.json.JsonArray
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.json.JsonArray arg
        end local 0 // io.vertx.redis.client.Request this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lio/vertx/redis/client/Request;
            0   16     1   arg  Lio/vertx/core/json/JsonArray;
            5   14     2    el  Ljava/lang/Object;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      arg   

  public abstract io.vertx.redis.client.Request nullArg();
    descriptor: ()Lio/vertx/redis/client/Request;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()

  public abstract io.vertx.redis.client.Command command();
    descriptor: ()Lio/vertx/redis/client/Command;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
}
SourceFile: "Request.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()