public class io.vertx.core.file.OpenOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.file.OpenOptions
  super_class: java.lang.Object
{
  public static final java.lang.String DEFAULT_PERMS;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final boolean DEFAULT_READ;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final boolean DEFAULT_WRITE;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final boolean DEFAULT_CREATE;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final boolean DEFAULT_CREATENEW;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final boolean DEFAULT_DSYNC;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final boolean DEFAULT_SYNC;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final boolean DEFAULT_DELETEONCLOSE;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final boolean DEFAULT_TRUNCATEEXISTING;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final boolean DEFAULT_SPARSE;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final boolean DEFAULT_APPEND;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

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

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

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

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

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

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

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

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

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

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 25
            aconst_null
            putstatic io.vertx.core.file.OpenOptions.DEFAULT_PERMS:Ljava/lang/String;
         1: .line 39
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.file.OpenOptions this
         0: .line 57
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            aload 0 /* this */
            getstatic io.vertx.core.file.OpenOptions.DEFAULT_PERMS:Ljava/lang/String;
            putfield io.vertx.core.file.OpenOptions.perms:Ljava/lang/String;
         2: .line 42
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.file.OpenOptions.read:Z
         3: .line 43
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.file.OpenOptions.write:Z
         4: .line 44
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.file.OpenOptions.create:Z
         5: .line 45
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.createNew:Z
         6: .line 46
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.dsync:Z
         7: .line 47
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.sync:Z
         8: .line 48
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.deleteOnClose:Z
         9: .line 49
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.truncateExisting:Z
        10: .line 50
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.sparse:Z
        11: .line 51
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.append:Z
        12: .line 58
            return
        end local 0 // io.vertx.core.file.OpenOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lio/vertx/core/file/OpenOptions;

  public void <init>(io.vertx.core.file.OpenOptions);
    descriptor: (Lio/vertx/core/file/OpenOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.file.OpenOptions this
        start local 1 // io.vertx.core.file.OpenOptions other
         0: .line 65
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            aload 0 /* this */
            getstatic io.vertx.core.file.OpenOptions.DEFAULT_PERMS:Ljava/lang/String;
            putfield io.vertx.core.file.OpenOptions.perms:Ljava/lang/String;
         2: .line 42
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.file.OpenOptions.read:Z
         3: .line 43
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.file.OpenOptions.write:Z
         4: .line 44
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.file.OpenOptions.create:Z
         5: .line 45
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.createNew:Z
         6: .line 46
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.dsync:Z
         7: .line 47
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.sync:Z
         8: .line 48
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.deleteOnClose:Z
         9: .line 49
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.truncateExisting:Z
        10: .line 50
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.sparse:Z
        11: .line 51
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.OpenOptions.append:Z
        12: .line 66
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.OpenOptions.perms:Ljava/lang/String;
            putfield io.vertx.core.file.OpenOptions.perms:Ljava/lang/String;
        13: .line 67
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.OpenOptions.read:Z
            putfield io.vertx.core.file.OpenOptions.read:Z
        14: .line 68
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.OpenOptions.write:Z
            putfield io.vertx.core.file.OpenOptions.write:Z
        15: .line 69
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.OpenOptions.create:Z
            putfield io.vertx.core.file.OpenOptions.create:Z
        16: .line 70
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.OpenOptions.createNew:Z
            putfield io.vertx.core.file.OpenOptions.createNew:Z
        17: .line 71
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.OpenOptions.dsync:Z
            putfield io.vertx.core.file.OpenOptions.dsync:Z
        18: .line 72
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.OpenOptions.sync:Z
            putfield io.vertx.core.file.OpenOptions.sync:Z
        19: .line 73
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.OpenOptions.deleteOnClose:Z
            putfield io.vertx.core.file.OpenOptions.deleteOnClose:Z
        20: .line 74
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.OpenOptions.truncateExisting:Z
            putfield io.vertx.core.file.OpenOptions.truncateExisting:Z
        21: .line 75
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.OpenOptions.sparse:Z
            putfield io.vertx.core.file.OpenOptions.sparse:Z
        22: .line 76
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.OpenOptions.append:Z
            putfield io.vertx.core.file.OpenOptions.append:Z
        23: .line 77
            return
        end local 1 // io.vertx.core.file.OpenOptions other
        end local 0 // io.vertx.core.file.OpenOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   24     0   this  Lio/vertx/core/file/OpenOptions;
            0   24     1  other  Lio/vertx/core/file/OpenOptions;
    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.file.OpenOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 85
            aload 0 /* this */
            invokespecial io.vertx.core.file.OpenOptions.<init>:()V
         1: .line 86
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.core.file.OpenOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/core/file/OpenOptions;)V
         2: .line 87
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.file.OpenOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/file/OpenOptions;
            0    3     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

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

  public io.vertx.core.file.OpenOptions setPerms(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/file/OpenOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.file.OpenOptions this
        start local 1 // java.lang.String perms
         0: .line 105
            aload 0 /* this */
            aload 1 /* perms */
            putfield io.vertx.core.file.OpenOptions.perms:Ljava/lang/String;
         1: .line 106
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String perms
        end local 0 // io.vertx.core.file.OpenOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/file/OpenOptions;
            0    2     1  perms  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      perms  

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

  public io.vertx.core.file.OpenOptions setRead(boolean);
    descriptor: (Z)Lio/vertx/core/file/OpenOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.file.OpenOptions this
        start local 1 // boolean read
         0: .line 125
            aload 0 /* this */
            iload 1 /* read */
            putfield io.vertx.core.file.OpenOptions.read:Z
         1: .line 126
            aload 0 /* this */
            areturn
        end local 1 // boolean read
        end local 0 // io.vertx.core.file.OpenOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/file/OpenOptions;
            0    2     1  read  Z
    MethodParameters:
      Name  Flags
      read  

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

  public io.vertx.core.file.OpenOptions setWrite(boolean);
    descriptor: (Z)Lio/vertx/core/file/OpenOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.file.OpenOptions this
        start local 1 // boolean write
         0: .line 145
            aload 0 /* this */
            iload 1 /* write */
            putfield io.vertx.core.file.OpenOptions.write:Z
         1: .line 146
            aload 0 /* this */
            areturn
        end local 1 // boolean write
        end local 0 // io.vertx.core.file.OpenOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/file/OpenOptions;
            0    2     1  write  Z
    MethodParameters:
       Name  Flags
      write  

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

  public io.vertx.core.file.OpenOptions setCreate(boolean);
    descriptor: (Z)Lio/vertx/core/file/OpenOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.file.OpenOptions this
        start local 1 // boolean create
         0: .line 165
            aload 0 /* this */
            iload 1 /* create */
            putfield io.vertx.core.file.OpenOptions.create:Z
         1: .line 166
            aload 0 /* this */
            areturn
        end local 1 // boolean create
        end local 0 // io.vertx.core.file.OpenOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/core/file/OpenOptions;
            0    2     1  create  Z
    MethodParameters:
        Name  Flags
      create  

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

  public io.vertx.core.file.OpenOptions setCreateNew(boolean);
    descriptor: (Z)Lio/vertx/core/file/OpenOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.file.OpenOptions this
        start local 1 // boolean createNew
         0: .line 185
            aload 0 /* this */
            iload 1 /* createNew */
            putfield io.vertx.core.file.OpenOptions.createNew:Z
         1: .line 186
            aload 0 /* this */
            areturn
        end local 1 // boolean createNew
        end local 0 // io.vertx.core.file.OpenOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/vertx/core/file/OpenOptions;
            0    2     1  createNew  Z
    MethodParameters:
           Name  Flags
      createNew  

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

  public io.vertx.core.file.OpenOptions setDeleteOnClose(boolean);
    descriptor: (Z)Lio/vertx/core/file/OpenOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.file.OpenOptions this
        start local 1 // boolean deleteOnClose
         0: .line 205
            aload 0 /* this */
            iload 1 /* deleteOnClose */
            putfield io.vertx.core.file.OpenOptions.deleteOnClose:Z
         1: .line 206
            aload 0 /* this */
            areturn
        end local 1 // boolean deleteOnClose
        end local 0 // io.vertx.core.file.OpenOptions this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/vertx/core/file/OpenOptions;
            0    2     1  deleteOnClose  Z
    MethodParameters:
               Name  Flags
      deleteOnClose  

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

  public io.vertx.core.file.OpenOptions setTruncateExisting(boolean);
    descriptor: (Z)Lio/vertx/core/file/OpenOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.file.OpenOptions this
        start local 1 // boolean truncateExisting
         0: .line 225
            aload 0 /* this */
            iload 1 /* truncateExisting */
            putfield io.vertx.core.file.OpenOptions.truncateExisting:Z
         1: .line 226
            aload 0 /* this */
            areturn
        end local 1 // boolean truncateExisting
        end local 0 // io.vertx.core.file.OpenOptions this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lio/vertx/core/file/OpenOptions;
            0    2     1  truncateExisting  Z
    MethodParameters:
                  Name  Flags
      truncateExisting  

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

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

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

  public io.vertx.core.file.OpenOptions setSync(boolean);
    descriptor: (Z)Lio/vertx/core/file/OpenOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.file.OpenOptions this
        start local 1 // boolean sync
         0: .line 263
            aload 0 /* this */
            iload 1 /* sync */
            putfield io.vertx.core.file.OpenOptions.sync:Z
         1: .line 264
            aload 0 /* this */
            areturn
        end local 1 // boolean sync
        end local 0 // io.vertx.core.file.OpenOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/file/OpenOptions;
            0    2     1  sync  Z
    MethodParameters:
      Name  Flags
      sync  

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

  public io.vertx.core.file.OpenOptions setDsync(boolean);
    descriptor: (Z)Lio/vertx/core/file/OpenOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.file.OpenOptions this
        start local 1 // boolean dsync
         0: .line 282
            aload 0 /* this */
            iload 1 /* dsync */
            putfield io.vertx.core.file.OpenOptions.dsync:Z
         1: .line 283
            aload 0 /* this */
            areturn
        end local 1 // boolean dsync
        end local 0 // io.vertx.core.file.OpenOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/file/OpenOptions;
            0    2     1  dsync  Z
    MethodParameters:
       Name  Flags
      dsync  

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

  public io.vertx.core.file.OpenOptions setAppend(boolean);
    descriptor: (Z)Lio/vertx/core/file/OpenOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.file.OpenOptions this
        start local 1 // boolean append
         0: .line 300
            aload 0 /* this */
            iload 1 /* append */
            putfield io.vertx.core.file.OpenOptions.append:Z
         1: .line 301
            aload 0 /* this */
            areturn
        end local 1 // boolean append
        end local 0 // io.vertx.core.file.OpenOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/core/file/OpenOptions;
            0    2     1  append  Z
    MethodParameters:
        Name  Flags
      append  
}
SourceFile: "OpenOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true, publicConverter = false)