public class io.vertx.codegen.type.AnnotationValueInfo
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.codegen.type.AnnotationValueInfo
  super_class: java.lang.Object
{
  private java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String simpleName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String packageName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.util.Map<java.lang.String, java.lang.Object> values;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.codegen.type.AnnotationValueInfo this
        start local 1 // java.lang.String name
         0: .line 20
            aload 0 /* this */
            aload 1 /* name */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            invokespecial io.vertx.codegen.type.AnnotationValueInfo.<init>:(Ljava/lang/String;Ljava/util/Map;)V
         1: .line 21
            return
        end local 1 // java.lang.String name
        end local 0 // io.vertx.codegen.type.AnnotationValueInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/codegen/type/AnnotationValueInfo;
            0    2     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public void <init>(java.lang.String, java.util.Map<java.lang.String, java.lang.Object>);
    descriptor: (Ljava/lang/String;Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.codegen.type.AnnotationValueInfo this
        start local 1 // java.lang.String name
        start local 2 // java.util.Map values
         0: .line 23
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 24
            aload 0 /* this */
            aload 1 /* name */
            putfield io.vertx.codegen.type.AnnotationValueInfo.name:Ljava/lang/String;
         2: .line 25
            aload 0 /* this */
            aload 1 /* name */
            invokestatic io.vertx.codegen.Helper.getSimpleName:(Ljava/lang/String;)Ljava/lang/String;
            putfield io.vertx.codegen.type.AnnotationValueInfo.simpleName:Ljava/lang/String;
         3: .line 26
            aload 0 /* this */
            aload 1 /* name */
            invokestatic io.vertx.codegen.Helper.getPackageName:(Ljava/lang/String;)Ljava/lang/String;
            putfield io.vertx.codegen.type.AnnotationValueInfo.packageName:Ljava/lang/String;
         4: .line 27
            aload 0 /* this */
            aload 2 /* values */
            ifnull 5
            aload 2 /* values */
            goto 6
      StackMap locals: io.vertx.codegen.type.AnnotationValueInfo java.lang.String java.util.Map
      StackMap stack: io.vertx.codegen.type.AnnotationValueInfo
         5: new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
      StackMap locals: io.vertx.codegen.type.AnnotationValueInfo java.lang.String java.util.Map
      StackMap stack: io.vertx.codegen.type.AnnotationValueInfo java.util.Map
         6: putfield io.vertx.codegen.type.AnnotationValueInfo.values:Ljava/util/Map;
         7: .line 28
            return
        end local 2 // java.util.Map values
        end local 1 // java.lang.String name
        end local 0 // io.vertx.codegen.type.AnnotationValueInfo this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lio/vertx/codegen/type/AnnotationValueInfo;
            0    8     1    name  Ljava/lang/String;
            0    8     2  values  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;
    Signature: (Ljava/lang/String;Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;)V
    MethodParameters:
        Name  Flags
      name    
      values  

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.codegen.type.AnnotationValueInfo this
         0: .line 31
            aload 0 /* this */
            getfield io.vertx.codegen.type.AnnotationValueInfo.values:Ljava/util/Map;
            invokeinterface java.util.Map.isEmpty:()Z
            ireturn
        end local 0 // io.vertx.codegen.type.AnnotationValueInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/codegen/type/AnnotationValueInfo;

  public void putMember(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.codegen.type.AnnotationValueInfo this
        start local 1 // java.lang.String memberName
        start local 2 // java.lang.Object memberValue
         0: .line 35
            aload 0 /* this */
            getfield io.vertx.codegen.type.AnnotationValueInfo.values:Ljava/util/Map;
            aload 1 /* memberName */
            aload 2 /* memberValue */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 36
            return
        end local 2 // java.lang.Object memberValue
        end local 1 // java.lang.String memberName
        end local 0 // io.vertx.codegen.type.AnnotationValueInfo this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/vertx/codegen/type/AnnotationValueInfo;
            0    2     1   memberName  Ljava/lang/String;
            0    2     2  memberValue  Ljava/lang/Object;
    MethodParameters:
             Name  Flags
      memberName   
      memberValue  

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.codegen.type.AnnotationValueInfo this
         0: .line 39
            aload 0 /* this */
            getfield io.vertx.codegen.type.AnnotationValueInfo.name:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.codegen.type.AnnotationValueInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/codegen/type/AnnotationValueInfo;

  public java.lang.String getSimpleName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.codegen.type.AnnotationValueInfo this
         0: .line 43
            aload 0 /* this */
            getfield io.vertx.codegen.type.AnnotationValueInfo.simpleName:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.codegen.type.AnnotationValueInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/codegen/type/AnnotationValueInfo;

  public java.lang.String getPackageName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.codegen.type.AnnotationValueInfo this
         0: .line 47
            aload 0 /* this */
            getfield io.vertx.codegen.type.AnnotationValueInfo.packageName:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.codegen.type.AnnotationValueInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/codegen/type/AnnotationValueInfo;

  public java.util.Set<java.lang.String> getMembersNames();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.codegen.type.AnnotationValueInfo this
         0: .line 51
            aload 0 /* this */
            getfield io.vertx.codegen.type.AnnotationValueInfo.values:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            areturn
        end local 0 // io.vertx.codegen.type.AnnotationValueInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/codegen/type/AnnotationValueInfo;
    Signature: ()Ljava/util/Set<Ljava/lang/String;>;

  public java.lang.Object getMember(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.codegen.type.AnnotationValueInfo this
        start local 1 // java.lang.String name
         0: .line 55
            aload 0 /* this */
            getfield io.vertx.codegen.type.AnnotationValueInfo.values:Ljava/util/Map;
            aload 1 /* name */
            aconst_null
            invokeinterface java.util.Map.getOrDefault:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.codegen.type.AnnotationValueInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/codegen/type/AnnotationValueInfo;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.codegen.type.AnnotationValueInfo this
        start local 1 // java.lang.Object o
         0: .line 60
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 61
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnull 2
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 63
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.vertx.codegen.type.AnnotationValueInfo
            astore 2 /* that */
        start local 2 // io.vertx.codegen.type.AnnotationValueInfo that
         4: .line 65
            aload 0 /* this */
            getfield io.vertx.codegen.type.AnnotationValueInfo.name:Ljava/lang/String;
            aload 2 /* that */
            getfield io.vertx.codegen.type.AnnotationValueInfo.name:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 5
            iconst_0
            ireturn
         5: .line 66
      StackMap locals: io.vertx.codegen.type.AnnotationValueInfo
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.codegen.type.AnnotationValueInfo.values:Ljava/util/Map;
            aload 2 /* that */
            getfield io.vertx.codegen.type.AnnotationValueInfo.values:Ljava/util/Map;
            invokeinterface java.util.Map.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // io.vertx.codegen.type.AnnotationValueInfo that
        end local 1 // java.lang.Object o
        end local 0 // io.vertx.codegen.type.AnnotationValueInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/codegen/type/AnnotationValueInfo;
            0    6     1     o  Ljava/lang/Object;
            4    6     2  that  Lio/vertx/codegen/type/AnnotationValueInfo;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.codegen.type.AnnotationValueInfo this
         0: .line 71
            aload 0 /* this */
            getfield io.vertx.codegen.type.AnnotationValueInfo.name:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            istore 1 /* result */
        start local 1 // int result
         1: .line 72
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.codegen.type.AnnotationValueInfo.values:Ljava/util/Map;
            invokeinterface java.util.Map.hashCode:()I
            iadd
            istore 1 /* result */
         2: .line 73
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // io.vertx.codegen.type.AnnotationValueInfo this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/codegen/type/AnnotationValueInfo;
            1    3     1  result  I
}
SourceFile: "AnnotationValueInfo.java"