public class io.vertx.config.impl.spi.PropertiesConfigProcessor implements io.vertx.config.spi.ConfigProcessor
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.config.impl.spi.PropertiesConfigProcessor
  super_class: java.lang.Object
{
  private static final io.vertx.config.impl.spi.PropertiesConfigProcessor$PropertiesReader FLAT_READER;
    descriptor: Lio/vertx/config/impl/spi/PropertiesConfigProcessor$PropertiesReader;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final io.vertx.config.impl.spi.PropertiesConfigProcessor$PropertiesReader HIERARCHICAL_READER;
    descriptor: Lio/vertx/config/impl/spi/PropertiesConfigProcessor$PropertiesReader;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 50
            new io.vertx.config.impl.spi.PropertiesConfigProcessor$FlatPropertiesReader
            dup
            invokespecial io.vertx.config.impl.spi.PropertiesConfigProcessor$FlatPropertiesReader.<init>:()V
            putstatic io.vertx.config.impl.spi.PropertiesConfigProcessor.FLAT_READER:Lio/vertx/config/impl/spi/PropertiesConfigProcessor$PropertiesReader;
         1: .line 52
            new io.vertx.config.impl.spi.PropertiesConfigProcessor$HierarchicalPropertiesReader
            dup
            invokespecial io.vertx.config.impl.spi.PropertiesConfigProcessor$HierarchicalPropertiesReader.<init>:()V
            putstatic io.vertx.config.impl.spi.PropertiesConfigProcessor.HIERARCHICAL_READER:Lio/vertx/config/impl/spi/PropertiesConfigProcessor$PropertiesReader;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.config.impl.spi.PropertiesConfigProcessor this
         0: .line 48
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.vertx.config.impl.spi.PropertiesConfigProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/config/impl/spi/PropertiesConfigProcessor;

  public java.lang.String name();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.config.impl.spi.PropertiesConfigProcessor this
         0: .line 56
            ldc "properties"
            areturn
        end local 0 // io.vertx.config.impl.spi.PropertiesConfigProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/config/impl/spi/PropertiesConfigProcessor;

  public void process(io.vertx.core.Vertx, io.vertx.core.json.JsonObject, io.vertx.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonObject>>);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=5
        start local 0 // io.vertx.config.impl.spi.PropertiesConfigProcessor this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.core.json.JsonObject configuration
        start local 3 // io.vertx.core.buffer.Buffer input
        start local 4 // io.vertx.core.Handler handler
         0: .line 61
            aload 2 /* configuration */
            ldc "hierarchical"
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual io.vertx.core.json.JsonObject.getBoolean:(Ljava/lang/String;Ljava/lang/Boolean;)Ljava/lang/Boolean;
            astore 5 /* hierarchicalData */
        start local 5 // java.lang.Boolean hierarchicalData
         1: .line 62
            aload 5 /* hierarchicalData */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 2
            getstatic io.vertx.config.impl.spi.PropertiesConfigProcessor.HIERARCHICAL_READER:Lio/vertx/config/impl/spi/PropertiesConfigProcessor$PropertiesReader;
            goto 3
      StackMap locals: java.lang.Boolean
      StackMap stack:
         2: getstatic io.vertx.config.impl.spi.PropertiesConfigProcessor.FLAT_READER:Lio/vertx/config/impl/spi/PropertiesConfigProcessor$PropertiesReader;
      StackMap locals:
      StackMap stack: io.vertx.config.impl.spi.PropertiesConfigProcessor$PropertiesReader
         3: astore 6 /* reader */
        start local 6 // io.vertx.config.impl.spi.PropertiesConfigProcessor$PropertiesReader reader
         4: .line 66
            aload 1 /* vertx */
            aload 3 /* input */
            aload 6 /* reader */
            aload 2 /* configuration */
            invokedynamic handle(Lio/vertx/core/buffer/Buffer;Lio/vertx/config/impl/spi/PropertiesConfigProcessor$PropertiesReader;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/config/impl/spi/PropertiesConfigProcessor.lambda$0(Lio/vertx/core/buffer/Buffer;Lio/vertx/config/impl/spi/PropertiesConfigProcessor$PropertiesReader;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
         5: .line 77
            aload 4 /* handler */
         6: .line 66
            invokeinterface io.vertx.core.Vertx.executeBlocking:(Lio/vertx/core/Handler;Lio/vertx/core/Handler;)V
         7: .line 78
            return
        end local 6 // io.vertx.config.impl.spi.PropertiesConfigProcessor$PropertiesReader reader
        end local 5 // java.lang.Boolean hierarchicalData
        end local 4 // io.vertx.core.Handler handler
        end local 3 // io.vertx.core.buffer.Buffer input
        end local 2 // io.vertx.core.json.JsonObject configuration
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.config.impl.spi.PropertiesConfigProcessor this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    8     0              this  Lio/vertx/config/impl/spi/PropertiesConfigProcessor;
            0    8     1             vertx  Lio/vertx/core/Vertx;
            0    8     2     configuration  Lio/vertx/core/json/JsonObject;
            0    8     3             input  Lio/vertx/core/buffer/Buffer;
            0    8     4           handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/json/JsonObject;>;>;
            1    8     5  hierarchicalData  Ljava/lang/Boolean;
            4    8     6            reader  Lio/vertx/config/impl/spi/PropertiesConfigProcessor$PropertiesReader;
    Signature: (Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/json/JsonObject;>;>;)V
    MethodParameters:
               Name  Flags
      vertx          
      configuration  
      input          
      handler        

  public static void closeQuietly(java.io.Closeable);
    descriptor: (Ljava/io/Closeable;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.Closeable closeable
         0: .line 81
            aload 0 /* closeable */
            ifnull 4
         1: .line 83
            aload 0 /* closeable */
            invokeinterface java.io.Closeable.close:()V
         2: .line 84
            goto 4
      StackMap locals:
      StackMap stack: java.lang.Exception
         3: pop
         4: .line 88
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.Closeable closeable
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0  closeable  Ljava/io/Closeable;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Exception
    MethodParameters:
           Name  Flags
      closeable  

  private static void lambda$0(io.vertx.core.buffer.Buffer, io.vertx.config.impl.spi.PropertiesConfigProcessor$PropertiesReader, io.vertx.core.json.JsonObject, io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/config/impl/spi/PropertiesConfigProcessor$PropertiesReader;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=8, args_size=4
        start local 3 // io.vertx.core.Promise future
         0: .line 67
            aload 0
            invokeinterface io.vertx.core.buffer.Buffer.getBytes:()[B
            astore 4 /* bytes */
        start local 4 // byte[] bytes
         1: .line 68
            new java.io.ByteArrayInputStream
            dup
            aload 4 /* bytes */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
            astore 5 /* stream */
        start local 5 // java.io.ByteArrayInputStream stream
         2: .line 70
            aload 1
            aload 2
            aload 5 /* stream */
            invokeinterface io.vertx.config.impl.spi.PropertiesConfigProcessor$PropertiesReader.readAsJson:(Lio/vertx/core/json/JsonObject;Ljava/io/InputStream;)Lio/vertx/core/json/JsonObject;
            astore 6 /* created */
        start local 6 // io.vertx.core.json.JsonObject created
         3: .line 71
            aload 3 /* future */
            aload 6 /* created */
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
        end local 6 // io.vertx.core.json.JsonObject created
         4: .line 72
            goto 11
      StackMap locals: io.vertx.core.buffer.Buffer io.vertx.config.impl.spi.PropertiesConfigProcessor$PropertiesReader io.vertx.core.json.JsonObject io.vertx.core.Promise byte[] java.io.ByteArrayInputStream
      StackMap stack: java.lang.Exception
         5: astore 6 /* e */
        start local 6 // java.lang.Exception e
         6: .line 73
            aload 3 /* future */
            aload 6 /* e */
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
        end local 6 // java.lang.Exception e
         7: .line 75
            aload 5 /* stream */
            invokestatic io.vertx.config.impl.spi.PropertiesConfigProcessor.closeQuietly:(Ljava/io/Closeable;)V
            goto 12
         8: .line 74
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 7
         9: .line 75
            aload 5 /* stream */
            invokestatic io.vertx.config.impl.spi.PropertiesConfigProcessor.closeQuietly:(Ljava/io/Closeable;)V
        10: .line 76
            aload 7
            athrow
        11: .line 75
      StackMap locals:
      StackMap stack:
            aload 5 /* stream */
            invokestatic io.vertx.config.impl.spi.PropertiesConfigProcessor.closeQuietly:(Ljava/io/Closeable;)V
        end local 5 // java.io.ByteArrayInputStream stream
        end local 4 // byte[] bytes
        12: .line 77
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.Promise future
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     3   future  Lio/vertx/core/Promise<Lio/vertx/core/json/JsonObject;>;
            1   12     4    bytes  [B
            2   12     5   stream  Ljava/io/ByteArrayInputStream;
            3    4     6  created  Lio/vertx/core/json/JsonObject;
            6    7     6        e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           2     4       5  Class java.lang.Exception
           2     7       8  any
}
SourceFile: "PropertiesConfigProcessor.java"
NestMembers:
  io.vertx.config.impl.spi.PropertiesConfigProcessor$FlatPropertiesReader  io.vertx.config.impl.spi.PropertiesConfigProcessor$HierarchicalPropertiesReader  io.vertx.config.impl.spi.PropertiesConfigProcessor$PropertiesReader
InnerClasses:
  private FlatPropertiesReader = io.vertx.config.impl.spi.PropertiesConfigProcessor$FlatPropertiesReader of io.vertx.config.impl.spi.PropertiesConfigProcessor
  private HierarchicalPropertiesReader = io.vertx.config.impl.spi.PropertiesConfigProcessor$HierarchicalPropertiesReader of io.vertx.config.impl.spi.PropertiesConfigProcessor
  private abstract PropertiesReader = io.vertx.config.impl.spi.PropertiesConfigProcessor$PropertiesReader of io.vertx.config.impl.spi.PropertiesConfigProcessor
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles