public class io.vertx.ext.healthchecks.Status
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.healthchecks.Status
  super_class: java.lang.Object
{
  private boolean ok;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.json.JsonObject data;
    descriptor: Lio/vertx/core/json/JsonObject;
    flags: (0x0002) ACC_PRIVATE

  private boolean procedureInError;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public static io.vertx.ext.healthchecks.Status OK();
    descriptor: ()Lio/vertx/ext/healthchecks/Status;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 21
            new io.vertx.ext.healthchecks.Status
            dup
            invokespecial io.vertx.ext.healthchecks.Status.<init>:()V
            iconst_1
            invokevirtual io.vertx.ext.healthchecks.Status.setOk:(Z)Lio/vertx/ext/healthchecks/Status;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static io.vertx.ext.healthchecks.Status OK(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/healthchecks/Status;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.json.JsonObject data
         0: .line 30
            new io.vertx.ext.healthchecks.Status
            dup
            invokespecial io.vertx.ext.healthchecks.Status.<init>:()V
            iconst_1
            invokevirtual io.vertx.ext.healthchecks.Status.setOk:(Z)Lio/vertx/ext/healthchecks/Status;
            aload 0 /* data */
            invokevirtual io.vertx.ext.healthchecks.Status.setData:(Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/healthchecks/Status;
            areturn
        end local 0 // io.vertx.core.json.JsonObject data
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  data  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      data  

  public static io.vertx.ext.healthchecks.Status KO();
    descriptor: ()Lio/vertx/ext/healthchecks/Status;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 39
            new io.vertx.ext.healthchecks.Status
            dup
            invokespecial io.vertx.ext.healthchecks.Status.<init>:()V
            iconst_0
            invokevirtual io.vertx.ext.healthchecks.Status.setOk:(Z)Lio/vertx/ext/healthchecks/Status;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static io.vertx.ext.healthchecks.Status KO(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/healthchecks/Status;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.json.JsonObject data
         0: .line 49
            new io.vertx.ext.healthchecks.Status
            dup
            invokespecial io.vertx.ext.healthchecks.Status.<init>:()V
            iconst_0
            invokevirtual io.vertx.ext.healthchecks.Status.setOk:(Z)Lio/vertx/ext/healthchecks/Status;
            aload 0 /* data */
            invokevirtual io.vertx.ext.healthchecks.Status.setData:(Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/healthchecks/Status;
            areturn
        end local 0 // io.vertx.core.json.JsonObject data
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  data  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      data  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.healthchecks.Status this
         0: .line 70
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 60
            aload 0 /* this */
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            putfield io.vertx.ext.healthchecks.Status.data:Lio/vertx/core/json/JsonObject;
         2: .line 72
            return
        end local 0 // io.vertx.ext.healthchecks.Status this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/healthchecks/Status;

  public void <init>(io.vertx.ext.healthchecks.Status);
    descriptor: (Lio/vertx/ext/healthchecks/Status;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.healthchecks.Status this
        start local 1 // io.vertx.ext.healthchecks.Status other
         0: .line 79
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 60
            aload 0 /* this */
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            putfield io.vertx.ext.healthchecks.Status.data:Lio/vertx/core/json/JsonObject;
         2: .line 80
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.healthchecks.Status.ok:Z
            putfield io.vertx.ext.healthchecks.Status.ok:Z
         3: .line 81
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.healthchecks.Status.data:Lio/vertx/core/json/JsonObject;
            putfield io.vertx.ext.healthchecks.Status.data:Lio/vertx/core/json/JsonObject;
         4: .line 82
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.healthchecks.Status.procedureInError:Z
            putfield io.vertx.ext.healthchecks.Status.procedureInError:Z
         5: .line 83
            return
        end local 1 // io.vertx.ext.healthchecks.Status other
        end local 0 // io.vertx.ext.healthchecks.Status this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/vertx/ext/healthchecks/Status;
            0    6     1  other  Lio/vertx/ext/healthchecks/Status;
    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=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.healthchecks.Status this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 90
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 60
            aload 0 /* this */
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            putfield io.vertx.ext.healthchecks.Status.data:Lio/vertx/core/json/JsonObject;
         2: .line 91
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.ext.healthchecks.StatusConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/ext/healthchecks/Status;)V
         3: .line 92
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.healthchecks.Status this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/healthchecks/Status;
            0    4     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.ext.healthchecks.Status this
         0: .line 100
            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 101
            aload 0 /* this */
            aload 1 /* json */
            invokestatic io.vertx.ext.healthchecks.StatusConverter.toJson:(Lio/vertx/ext/healthchecks/Status;Lio/vertx/core/json/JsonObject;)V
         2: .line 102
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.healthchecks.Status this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/healthchecks/Status;
            1    3     1  json  Lio/vertx/core/json/JsonObject;

  public boolean isOk();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.healthchecks.Status this
         0: .line 109
            aload 0 /* this */
            getfield io.vertx.ext.healthchecks.Status.ok:Z
            ireturn
        end local 0 // io.vertx.ext.healthchecks.Status this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/healthchecks/Status;

  public io.vertx.ext.healthchecks.Status setOk(boolean);
    descriptor: (Z)Lio/vertx/ext/healthchecks/Status;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.healthchecks.Status this
        start local 1 // boolean ok
         0: .line 119
            aload 0 /* this */
            iload 1 /* ok */
            putfield io.vertx.ext.healthchecks.Status.ok:Z
         1: .line 120
            aload 0 /* this */
            areturn
        end local 1 // boolean ok
        end local 0 // io.vertx.ext.healthchecks.Status this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/healthchecks/Status;
            0    2     1    ok  Z
    MethodParameters:
      Name  Flags
      ok    

  public io.vertx.ext.healthchecks.Status setKO();
    descriptor: ()Lio/vertx/ext/healthchecks/Status;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.healthchecks.Status this
         0: .line 129
            aload 0 /* this */
            iconst_0
            invokevirtual io.vertx.ext.healthchecks.Status.setOk:(Z)Lio/vertx/ext/healthchecks/Status;
            areturn
        end local 0 // io.vertx.ext.healthchecks.Status this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/healthchecks/Status;

  public io.vertx.ext.healthchecks.Status setOK();
    descriptor: ()Lio/vertx/ext/healthchecks/Status;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.healthchecks.Status this
         0: .line 138
            aload 0 /* this */
            iconst_1
            invokevirtual io.vertx.ext.healthchecks.Status.setOk:(Z)Lio/vertx/ext/healthchecks/Status;
            areturn
        end local 0 // io.vertx.ext.healthchecks.Status this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/healthchecks/Status;

  public io.vertx.core.json.JsonObject getData();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.healthchecks.Status this
         0: .line 145
            aload 0 /* this */
            getfield io.vertx.ext.healthchecks.Status.data:Lio/vertx/core/json/JsonObject;
            areturn
        end local 0 // io.vertx.ext.healthchecks.Status this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/healthchecks/Status;

  public io.vertx.ext.healthchecks.Status setData(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/healthchecks/Status;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.healthchecks.Status this
        start local 1 // io.vertx.core.json.JsonObject data
         0: .line 155
            aload 0 /* this */
            aload 1 /* data */
            putfield io.vertx.ext.healthchecks.Status.data:Lio/vertx/core/json/JsonObject;
         1: .line 156
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.json.JsonObject data
        end local 0 // io.vertx.ext.healthchecks.Status this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/healthchecks/Status;
            0    2     1  data  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      data  

  public boolean isProcedureInError();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.healthchecks.Status this
         0: .line 163
            aload 0 /* this */
            getfield io.vertx.ext.healthchecks.Status.procedureInError:Z
            ireturn
        end local 0 // io.vertx.ext.healthchecks.Status this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/healthchecks/Status;

  public io.vertx.ext.healthchecks.Status setProcedureInError(boolean);
    descriptor: (Z)Lio/vertx/ext/healthchecks/Status;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.healthchecks.Status this
        start local 1 // boolean procedureInError
         0: .line 173
            aload 0 /* this */
            iload 1 /* procedureInError */
            putfield io.vertx.ext.healthchecks.Status.procedureInError:Z
         1: .line 174
            aload 0 /* this */
            areturn
        end local 1 // boolean procedureInError
        end local 0 // io.vertx.ext.healthchecks.Status this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lio/vertx/ext/healthchecks/Status;
            0    2     1  procedureInError  Z
    MethodParameters:
                  Name  Flags
      procedureInError  
}
SourceFile: "Status.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true)