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

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

  private static final java.lang.String TMPDIR;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.lang.String DEFAULT_CACHE_DIR_BASE;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "vertx-cache"

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

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

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 32
            ldc "vertx.disableFileCaching"
            invokestatic java.lang.Boolean.getBoolean:(Ljava/lang/String;)Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: putstatic io.vertx.core.file.FileSystemOptions.DEFAULT_FILE_CACHING_ENABLED:Z
         3: .line 37
            ldc "vertx.disableFileCPResolving"
            invokestatic java.lang.Boolean.getBoolean:(Ljava/lang/String;)Z
            ifeq 4
            iconst_0
            goto 5
      StackMap locals:
      StackMap stack:
         4: iconst_1
      StackMap locals:
      StackMap stack: int
         5: putstatic io.vertx.core.file.FileSystemOptions.DEFAULT_CLASS_PATH_RESOLVING_ENABLED:Z
         6: .line 42
            ldc "java.io.tmpdir"
            ldc "."
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            putstatic io.vertx.core.file.FileSystemOptions.TMPDIR:Ljava/lang/String;
         7: .line 49
            ldc "vertx.cacheDirBase"
            new java.lang.StringBuilder
            dup
            getstatic io.vertx.core.file.FileSystemOptions.TMPDIR:Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            getstatic java.io.File.separator:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "vertx-cache"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            putstatic io.vertx.core.file.FileSystemOptions.DEFAULT_FILE_CACHING_DIR:Ljava/lang/String;
            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.FileSystemOptions this
         0: .line 58
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            aload 0 /* this */
            getstatic io.vertx.core.file.FileSystemOptions.DEFAULT_CLASS_PATH_RESOLVING_ENABLED:Z
            putfield io.vertx.core.file.FileSystemOptions.classPathResolvingEnabled:Z
         2: .line 52
            aload 0 /* this */
            getstatic io.vertx.core.file.FileSystemOptions.DEFAULT_FILE_CACHING_ENABLED:Z
            putfield io.vertx.core.file.FileSystemOptions.fileCachingEnabled:Z
         3: .line 53
            aload 0 /* this */
            getstatic io.vertx.core.file.FileSystemOptions.DEFAULT_FILE_CACHING_DIR:Ljava/lang/String;
            putfield io.vertx.core.file.FileSystemOptions.fileCacheDir:Ljava/lang/String;
         4: .line 59
            return
        end local 0 // io.vertx.core.file.FileSystemOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/file/FileSystemOptions;

  public void <init>(io.vertx.core.file.FileSystemOptions);
    descriptor: (Lio/vertx/core/file/FileSystemOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.file.FileSystemOptions this
        start local 1 // io.vertx.core.file.FileSystemOptions other
         0: .line 66
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            aload 0 /* this */
            getstatic io.vertx.core.file.FileSystemOptions.DEFAULT_CLASS_PATH_RESOLVING_ENABLED:Z
            putfield io.vertx.core.file.FileSystemOptions.classPathResolvingEnabled:Z
         2: .line 52
            aload 0 /* this */
            getstatic io.vertx.core.file.FileSystemOptions.DEFAULT_FILE_CACHING_ENABLED:Z
            putfield io.vertx.core.file.FileSystemOptions.fileCachingEnabled:Z
         3: .line 53
            aload 0 /* this */
            getstatic io.vertx.core.file.FileSystemOptions.DEFAULT_FILE_CACHING_DIR:Ljava/lang/String;
            putfield io.vertx.core.file.FileSystemOptions.fileCacheDir:Ljava/lang/String;
         4: .line 67
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.core.file.FileSystemOptions.isClassPathResolvingEnabled:()Z
            putfield io.vertx.core.file.FileSystemOptions.classPathResolvingEnabled:Z
         5: .line 68
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.core.file.FileSystemOptions.isFileCachingEnabled:()Z
            putfield io.vertx.core.file.FileSystemOptions.fileCachingEnabled:Z
         6: .line 69
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.core.file.FileSystemOptions.getFileCacheDir:()Ljava/lang/String;
            putfield io.vertx.core.file.FileSystemOptions.fileCacheDir:Ljava/lang/String;
         7: .line 70
            return
        end local 1 // io.vertx.core.file.FileSystemOptions other
        end local 0 // io.vertx.core.file.FileSystemOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lio/vertx/core/file/FileSystemOptions;
            0    8     1  other  Lio/vertx/core/file/FileSystemOptions;
    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.FileSystemOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 79
            aload 0 /* this */
            invokespecial io.vertx.core.file.FileSystemOptions.<init>:()V
         1: .line 81
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.core.file.FileSystemOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/core/file/FileSystemOptions;)V
         2: .line 82
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.file.FileSystemOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/file/FileSystemOptions;
            0    3     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.core.file.FileSystemOptions this
         0: .line 90
            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 91
            aload 0 /* this */
            aload 1 /* json */
            invokestatic io.vertx.core.file.FileSystemOptionsConverter.toJson:(Lio/vertx/core/file/FileSystemOptions;Lio/vertx/core/json/JsonObject;)V
         2: .line 92
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.file.FileSystemOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/file/FileSystemOptions;
            1    3     1  json  Lio/vertx/core/json/JsonObject;

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

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

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

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

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

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

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.file.FileSystemOptions this
         0: .line 156
            new java.lang.StringBuilder
            dup
            ldc "FileSystemOptions{classPathResolvingEnabled="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         1: .line 157
            aload 0 /* this */
            getfield io.vertx.core.file.FileSystemOptions.classPathResolvingEnabled:Z
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
         2: .line 158
            ldc ", fileCachingEnabled="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.core.file.FileSystemOptions.fileCachingEnabled:Z
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
         3: .line 159
            ldc ", fileCacheDir="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.core.file.FileSystemOptions.fileCacheDir:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 160
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
         5: .line 156
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.file.FileSystemOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/file/FileSystemOptions;
}
SourceFile: "FileSystemOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true, publicConverter = false)