public class io.vertx.core.file.CopyOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.file.CopyOptions
  super_class: java.lang.Object
{
  public static final boolean DEFAULT_REPLACE_EXISTING;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

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

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

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

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

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

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

  private boolean nofollowLinks;
    descriptor: Z
    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.core.file.CopyOptions this
         0: .line 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.CopyOptions.replaceExisting:Z
         2: .line 46
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.CopyOptions.copyAttributes:Z
         3: .line 47
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.CopyOptions.atomicMove:Z
         4: .line 48
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.CopyOptions.nofollowLinks:Z
         5: .line 54
            return
        end local 0 // io.vertx.core.file.CopyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/file/CopyOptions;

  public void <init>(io.vertx.core.file.CopyOptions);
    descriptor: (Lio/vertx/core/file/CopyOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.file.CopyOptions this
        start local 1 // io.vertx.core.file.CopyOptions other
         0: .line 61
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.CopyOptions.replaceExisting:Z
         2: .line 46
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.CopyOptions.copyAttributes:Z
         3: .line 47
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.CopyOptions.atomicMove:Z
         4: .line 48
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.file.CopyOptions.nofollowLinks:Z
         5: .line 62
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.CopyOptions.replaceExisting:Z
            putfield io.vertx.core.file.CopyOptions.replaceExisting:Z
         6: .line 63
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.CopyOptions.copyAttributes:Z
            putfield io.vertx.core.file.CopyOptions.copyAttributes:Z
         7: .line 64
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.CopyOptions.atomicMove:Z
            putfield io.vertx.core.file.CopyOptions.atomicMove:Z
         8: .line 65
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.core.file.CopyOptions.nofollowLinks:Z
            putfield io.vertx.core.file.CopyOptions.nofollowLinks:Z
         9: .line 66
            return
        end local 1 // io.vertx.core.file.CopyOptions other
        end local 0 // io.vertx.core.file.CopyOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lio/vertx/core/file/CopyOptions;
            0   10     1  other  Lio/vertx/core/file/CopyOptions;
    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.CopyOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 75
            aload 0 /* this */
            invokespecial io.vertx.core.file.CopyOptions.<init>:()V
         1: .line 76
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.core.file.CopyOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/core/file/CopyOptions;)V
         2: .line 77
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.file.CopyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/file/CopyOptions;
            0    3     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

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

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

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

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

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

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

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

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