public class io.vertx.codegen.overloadcheck.SimpleType
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.codegen.overloadcheck.SimpleType
  super_class: java.lang.Object
{
  private static final java.util.Set<java.lang.String> ALL_TYPE;
    descriptor: Ljava/util/Set;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Set<Ljava/lang/String;>;

  final java.util.Set<java.lang.String> name;
    descriptor: Ljava/util/Set;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/Set<Ljava/lang/String;>;

  final boolean nullable;
    descriptor: Z
    flags: (0x0010) ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 11
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putstatic io.vertx.codegen.overloadcheck.SimpleType.ALL_TYPE:Ljava/util/Set;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.util.Set<java.lang.String>, );
    descriptor: (Ljava/util/Set;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.codegen.overloadcheck.SimpleType this
        start local 1 // java.util.Set value
        start local 2 // boolean nullable
         0: .line 16
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 17
            aload 0 /* this */
            aload 1 /* value */
            putfield io.vertx.codegen.overloadcheck.SimpleType.name:Ljava/util/Set;
         2: .line 18
            aload 0 /* this */
            iload 2 /* nullable */
            putfield io.vertx.codegen.overloadcheck.SimpleType.nullable:Z
         3: .line 19
            return
        end local 2 // boolean nullable
        end local 1 // java.util.Set value
        end local 0 // io.vertx.codegen.overloadcheck.SimpleType this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lio/vertx/codegen/overloadcheck/SimpleType;
            0    4     1     value  Ljava/util/Set<Ljava/lang/String;>;
            0    4     2  nullable  Z
    Signature: (Ljava/util/Set<Ljava/lang/String;>;Z)V
    MethodParameters:
          Name  Flags
      value     
      nullable  

  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.overloadcheck.SimpleType this
        start local 1 // java.lang.Object obj
         0: .line 23
            aload 1 /* obj */
            instanceof io.vertx.codegen.overloadcheck.SimpleType
            ifeq 3
         1: .line 24
            aload 1 /* obj */
            checkcast io.vertx.codegen.overloadcheck.SimpleType
            astore 2 /* that */
        start local 2 // io.vertx.codegen.overloadcheck.SimpleType that
         2: .line 25
            aload 0 /* this */
            getfield io.vertx.codegen.overloadcheck.SimpleType.name:Ljava/util/Set;
            aload 2 /* that */
            getfield io.vertx.codegen.overloadcheck.SimpleType.name:Ljava/util/Set;
            invokeinterface java.util.Set.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // io.vertx.codegen.overloadcheck.SimpleType that
         3: .line 27
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // io.vertx.codegen.overloadcheck.SimpleType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/codegen/overloadcheck/SimpleType;
            0    4     1   obj  Ljava/lang/Object;
            2    3     2  that  Lio/vertx/codegen/overloadcheck/SimpleType;
    MethodParameters:
      Name  Flags
      obj   

  public boolean isAll();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.codegen.overloadcheck.SimpleType this
         0: .line 31
            aload 0 /* this */
            getfield io.vertx.codegen.overloadcheck.SimpleType.name:Ljava/util/Set;
            getstatic io.vertx.codegen.overloadcheck.SimpleType.ALL_TYPE:Ljava/util/Set;
            invokeinterface java.util.Set.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 0 // io.vertx.codegen.overloadcheck.SimpleType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/codegen/overloadcheck/SimpleType;

  public boolean matches(io.vertx.codegen.overloadcheck.SimpleType);
    descriptor: (Lio/vertx/codegen/overloadcheck/SimpleType;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.codegen.overloadcheck.SimpleType this
        start local 1 // io.vertx.codegen.overloadcheck.SimpleType other
         0: .line 35
            new java.util.HashSet
            dup
            aload 0 /* this */
            getfield io.vertx.codegen.overloadcheck.SimpleType.name:Ljava/util/Set;
            invokespecial java.util.HashSet.<init>:(Ljava/util/Collection;)V
            astore 2 /* intersection */
        start local 2 // java.util.Set intersection
         1: .line 36
            aload 2 /* intersection */
            aload 1 /* other */
            getfield io.vertx.codegen.overloadcheck.SimpleType.name:Ljava/util/Set;
            invokeinterface java.util.Set.retainAll:(Ljava/util/Collection;)Z
            pop
         2: .line 37
            aload 2 /* intersection */
            invokeinterface java.util.Set.size:()I
            ifgt 4
            aload 0 /* this */
            invokevirtual io.vertx.codegen.overloadcheck.SimpleType.isAll:()Z
            ifne 4
            aload 1 /* other */
            invokevirtual io.vertx.codegen.overloadcheck.SimpleType.isAll:()Z
            ifne 4
            aload 0 /* this */
            getfield io.vertx.codegen.overloadcheck.SimpleType.nullable:Z
            ifeq 3
            aload 1 /* other */
            getfield io.vertx.codegen.overloadcheck.SimpleType.nullable:Z
            ifne 4
      StackMap locals: java.util.Set
      StackMap stack:
         3: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_1
            ireturn
        end local 2 // java.util.Set intersection
        end local 1 // io.vertx.codegen.overloadcheck.SimpleType other
        end local 0 // io.vertx.codegen.overloadcheck.SimpleType this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lio/vertx/codegen/overloadcheck/SimpleType;
            0    5     1         other  Lio/vertx/codegen/overloadcheck/SimpleType;
            1    5     2  intersection  Ljava/util/Set<Ljava/lang/String;>;
    MethodParameters:
       Name  Flags
      other  
}
SourceFile: "SimpleType.java"