public class io.vertx.ext.unit.report.ReportOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.unit.report.ReportOptions
  super_class: java.lang.Object
{
  public static final java.lang.String DEFAULT_TO;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "console"

  public static final java.lang.String DEFAULT_FORMAT;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "simple"

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.unit.report.ReportOptions this
         0: .line 28
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 25
            aload 0 /* this */
            ldc "console"
            putfield io.vertx.ext.unit.report.ReportOptions.to:Ljava/lang/String;
         2: .line 26
            aload 0 /* this */
            ldc "simple"
            putfield io.vertx.ext.unit.report.ReportOptions.format:Ljava/lang/String;
         3: .line 29
            return
        end local 0 // io.vertx.ext.unit.report.ReportOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/unit/report/ReportOptions;

  public void <init>(io.vertx.ext.unit.report.ReportOptions);
    descriptor: (Lio/vertx/ext/unit/report/ReportOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.unit.report.ReportOptions this
        start local 1 // io.vertx.ext.unit.report.ReportOptions other
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 25
            aload 0 /* this */
            ldc "console"
            putfield io.vertx.ext.unit.report.ReportOptions.to:Ljava/lang/String;
         2: .line 26
            aload 0 /* this */
            ldc "simple"
            putfield io.vertx.ext.unit.report.ReportOptions.format:Ljava/lang/String;
         3: .line 32
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.unit.report.ReportOptions.to:Ljava/lang/String;
            putfield io.vertx.ext.unit.report.ReportOptions.to:Ljava/lang/String;
         4: .line 33
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.unit.report.ReportOptions.format:Ljava/lang/String;
            putfield io.vertx.ext.unit.report.ReportOptions.format:Ljava/lang/String;
         5: .line 34
            return
        end local 1 // io.vertx.ext.unit.report.ReportOptions other
        end local 0 // io.vertx.ext.unit.report.ReportOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/vertx/ext/unit/report/ReportOptions;
            0    6     1  other  Lio/vertx/ext/unit/report/ReportOptions;
    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.ext.unit.report.ReportOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 25
            aload 0 /* this */
            ldc "console"
            putfield io.vertx.ext.unit.report.ReportOptions.to:Ljava/lang/String;
         2: .line 26
            aload 0 /* this */
            ldc "simple"
            putfield io.vertx.ext.unit.report.ReportOptions.format:Ljava/lang/String;
         3: .line 37
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.ext.unit.report.ReportOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/ext/unit/report/ReportOptions;)V
         4: .line 38
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.unit.report.ReportOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/ext/unit/report/ReportOptions;
            0    5     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

  public java.lang.String getTo();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.unit.report.ReportOptions this
         0: .line 44
            aload 0 /* this */
            getfield io.vertx.ext.unit.report.ReportOptions.to:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.unit.report.ReportOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/unit/report/ReportOptions;

  public io.vertx.ext.unit.report.ReportOptions setTo(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/unit/report/ReportOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.unit.report.ReportOptions this
        start local 1 // java.lang.String to
         0: .line 55
            aload 0 /* this */
            aload 1 /* to */
            putfield io.vertx.ext.unit.report.ReportOptions.to:Ljava/lang/String;
         1: .line 56
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String to
        end local 0 // io.vertx.ext.unit.report.ReportOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/unit/report/ReportOptions;
            0    2     1    to  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      to    

  public java.lang.String getFormat();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.unit.report.ReportOptions this
         0: .line 63
            aload 0 /* this */
            getfield io.vertx.ext.unit.report.ReportOptions.format:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.unit.report.ReportOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/unit/report/ReportOptions;

  public io.vertx.ext.unit.report.ReportOptions setFormat(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/unit/report/ReportOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.unit.report.ReportOptions this
        start local 1 // java.lang.String format
         0: .line 74
            aload 0 /* this */
            aload 1 /* format */
            putfield io.vertx.ext.unit.report.ReportOptions.format:Ljava/lang/String;
         1: .line 75
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String format
        end local 0 // io.vertx.ext.unit.report.ReportOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/ext/unit/report/ReportOptions;
            0    2     1  format  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
        Name  Flags
      format  

  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.unit.report.ReportOptions this
         0: .line 79
            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 80
            aload 0 /* this */
            aload 1 /* json */
            invokestatic io.vertx.ext.unit.report.ReportOptionsConverter.toJson:(Lio/vertx/ext/unit/report/ReportOptions;Lio/vertx/core/json/JsonObject;)V
         2: .line 81
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.unit.report.ReportOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/unit/report/ReportOptions;
            1    3     1  json  Lio/vertx/core/json/JsonObject;
}
SourceFile: "ReportOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true)