public class io.vertx.core.cli.Argument
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.cli.Argument
  super_class: java.lang.Object
{
  public static final java.lang.String DEFAULT_ARG_NAME;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "value"

  protected int index;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected java.lang.String argName;
    descriptor: Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED

  protected java.lang.String description;
    descriptor: Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED

  protected boolean hidden;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected boolean required;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected java.lang.String defaultValue;
    descriptor: Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED

  protected boolean multiValued;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.cli.Argument this
         0: .line 73
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            iconst_m1
            putfield io.vertx.core.cli.Argument.index:I
         2: .line 43
            aload 0 /* this */
            ldc "value"
            putfield io.vertx.core.cli.Argument.argName:Ljava/lang/String;
         3: .line 58
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.cli.Argument.required:Z
         4: .line 68
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.cli.Argument.multiValued:Z
         5: .line 75
            return
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/cli/Argument;

  public void <init>(io.vertx.core.cli.Argument);
    descriptor: (Lio/vertx/core/cli/Argument;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.cli.Argument this
        start local 1 // io.vertx.core.cli.Argument other
         0: .line 83
            aload 0 /* this */
            invokespecial io.vertx.core.cli.Argument.<init>:()V
         1: .line 84
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.cli.Argument.index:I
            putfield io.vertx.core.cli.Argument.index:I
         2: .line 85
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.cli.Argument.argName:Ljava/lang/String;
            putfield io.vertx.core.cli.Argument.argName:Ljava/lang/String;
         3: .line 86
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.cli.Argument.description:Ljava/lang/String;
            putfield io.vertx.core.cli.Argument.description:Ljava/lang/String;
         4: .line 87
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.cli.Argument.hidden:Z
            putfield io.vertx.core.cli.Argument.hidden:Z
         5: .line 88
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.cli.Argument.required:Z
            putfield io.vertx.core.cli.Argument.required:Z
         6: .line 89
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.cli.Argument.defaultValue:Ljava/lang/String;
            putfield io.vertx.core.cli.Argument.defaultValue:Ljava/lang/String;
         7: .line 90
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.cli.Argument.multiValued:Z
            putfield io.vertx.core.cli.Argument.multiValued:Z
         8: .line 91
            return
        end local 1 // io.vertx.core.cli.Argument other
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lio/vertx/core/cli/Argument;
            0    9     1  other  Lio/vertx/core/cli/Argument;
    MethodParameters:
       Name  Flags
      other  

  public void <init>(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.cli.Argument this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 100
            aload 0 /* this */
            invokespecial io.vertx.core.cli.Argument.<init>:()V
         1: .line 101
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.core.cli.ArgumentConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/core/cli/Argument;)V
         2: .line 102
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/cli/Argument;
            0    3     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

  public io.vertx.core.json.JsonObject toJson();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.cli.Argument this
         0: .line 111
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 1 /* json */
        start local 1 // io.vertx.core.json.JsonObject json
         1: .line 112
            aload 0 /* this */
            aload 1 /* json */
            invokestatic io.vertx.core.cli.ArgumentConverter.toJson:(Lio/vertx/core/cli/Argument;Lio/vertx/core/json/JsonObject;)V
         2: .line 113
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/cli/Argument;
            1    3     1  json  Lio/vertx/core/json/JsonObject;

  public java.lang.String getArgName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.cli.Argument this
         0: .line 120
            aload 0 /* this */
            getfield io.vertx.core.cli.Argument.argName:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/cli/Argument;

  public io.vertx.core.cli.Argument setArgName(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/cli/Argument;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.cli.Argument this
        start local 1 // java.lang.String argName
         0: .line 130
            aload 1 /* argName */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 131
            aload 0 /* this */
            aload 1 /* argName */
            putfield io.vertx.core.cli.Argument.argName:Ljava/lang/String;
         2: .line 132
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String argName
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/cli/Argument;
            0    3     1  argName  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      argName  

  public java.lang.String getDescription();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.cli.Argument this
         0: .line 139
            aload 0 /* this */
            getfield io.vertx.core.cli.Argument.description:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/cli/Argument;

  public io.vertx.core.cli.Argument setDescription(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/cli/Argument;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.cli.Argument this
        start local 1 // java.lang.String description
         0: .line 149
            aload 1 /* description */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 150
            aload 0 /* this */
            aload 1 /* description */
            putfield io.vertx.core.cli.Argument.description:Ljava/lang/String;
         2: .line 151
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String description
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lio/vertx/core/cli/Argument;
            0    3     1  description  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      description  

  public boolean isHidden();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.cli.Argument this
         0: .line 158
            aload 0 /* this */
            getfield io.vertx.core.cli.Argument.hidden:Z
            ireturn
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/cli/Argument;

  public io.vertx.core.cli.Argument setHidden(boolean);
    descriptor: (Z)Lio/vertx/core/cli/Argument;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.cli.Argument this
        start local 1 // boolean hidden
         0: .line 168
            aload 0 /* this */
            iload 1 /* hidden */
            putfield io.vertx.core.cli.Argument.hidden:Z
         1: .line 169
            aload 0 /* this */
            areturn
        end local 1 // boolean hidden
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/core/cli/Argument;
            0    2     1  hidden  Z
    MethodParameters:
        Name  Flags
      hidden  

  public int getIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.cli.Argument this
         0: .line 176
            aload 0 /* this */
            getfield io.vertx.core.cli.Argument.index:I
            ireturn
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/cli/Argument;

  public io.vertx.core.cli.Argument setIndex(int);
    descriptor: (I)Lio/vertx/core/cli/Argument;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.cli.Argument this
        start local 1 // int index
         0: .line 186
            iload 1 /* index */
            ifge 2
         1: .line 187
            new java.lang.IllegalArgumentException
            dup
            ldc "Argument index cannot be negative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 189
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            putfield io.vertx.core.cli.Argument.index:I
         3: .line 190
            aload 0 /* this */
            areturn
        end local 1 // int index
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lio/vertx/core/cli/Argument;
            0    4     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public boolean isRequired();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.cli.Argument this
         0: .line 197
            aload 0 /* this */
            getfield io.vertx.core.cli.Argument.required:Z
            ireturn
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/cli/Argument;

  public io.vertx.core.cli.Argument setRequired(boolean);
    descriptor: (Z)Lio/vertx/core/cli/Argument;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.cli.Argument this
        start local 1 // boolean required
         0: .line 207
            aload 0 /* this */
            iload 1 /* required */
            putfield io.vertx.core.cli.Argument.required:Z
         1: .line 208
            aload 0 /* this */
            areturn
        end local 1 // boolean required
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/core/cli/Argument;
            0    2     1  required  Z
    MethodParameters:
          Name  Flags
      required  

  public java.lang.String getDefaultValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.cli.Argument this
         0: .line 215
            aload 0 /* this */
            getfield io.vertx.core.cli.Argument.defaultValue:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/cli/Argument;

  public io.vertx.core.cli.Argument setDefaultValue(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/cli/Argument;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.cli.Argument this
        start local 1 // java.lang.String defaultValue
         0: .line 225
            aload 0 /* this */
            aload 1 /* defaultValue */
            putfield io.vertx.core.cli.Argument.defaultValue:Ljava/lang/String;
         1: .line 226
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String defaultValue
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/vertx/core/cli/Argument;
            0    2     1  defaultValue  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      defaultValue  

  public boolean isMultiValued();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.cli.Argument this
         0: .line 233
            aload 0 /* this */
            getfield io.vertx.core.cli.Argument.multiValued:Z
            ireturn
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/cli/Argument;

  public io.vertx.core.cli.Argument setMultiValued(boolean);
    descriptor: (Z)Lio/vertx/core/cli/Argument;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.cli.Argument this
        start local 1 // boolean multiValued
         0: .line 243
            aload 0 /* this */
            iload 1 /* multiValued */
            putfield io.vertx.core.cli.Argument.multiValued:Z
         1: .line 244
            aload 0 /* this */
            areturn
        end local 1 // boolean multiValued
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/vertx/core/cli/Argument;
            0    2     1  multiValued  Z
    MethodParameters:
             Name  Flags
      multiValued  

  public void ensureValidity();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.cli.Argument this
         0: .line 255
            aload 0 /* this */
            getfield io.vertx.core.cli.Argument.index:I
            ifge 2
         1: .line 256
            new java.lang.IllegalArgumentException
            dup
            ldc "The index cannot be negative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 258
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.cli.Argument this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/cli/Argument;
}
SourceFile: "Argument.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true, publicConverter = false)