public final class org.jdbi.v3.core.statement.SqlStatements implements org.jdbi.v3.core.config.JdbiConfig<org.jdbi.v3.core.statement.SqlStatements>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.jdbi.v3.core.statement.SqlStatements
  super_class: java.lang.Object
{
  private final java.util.Map<java.lang.String, java.lang.Object> attributes;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;

  private org.jdbi.v3.core.statement.TemplateEngine templateEngine;
    descriptor: Lorg/jdbi/v3/core/statement/TemplateEngine;
    flags: (0x0002) ACC_PRIVATE

  private org.jdbi.v3.core.statement.SqlParser sqlParser;
    descriptor: Lorg/jdbi/v3/core/statement/SqlParser;
    flags: (0x0002) ACC_PRIVATE

  private org.jdbi.v3.core.statement.SqlLogger sqlLogger;
    descriptor: Lorg/jdbi/v3/core/statement/SqlLogger;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putfield org.jdbi.v3.core.statement.SqlStatements.attributes:Ljava/util/Map;
         2: .line 34
            aload 0 /* this */
            new org.jdbi.v3.core.statement.DefinedAttributeTemplateEngine
            dup
            invokespecial org.jdbi.v3.core.statement.DefinedAttributeTemplateEngine.<init>:()V
            putfield org.jdbi.v3.core.statement.SqlStatements.templateEngine:Lorg/jdbi/v3/core/statement/TemplateEngine;
         3: .line 35
            aload 0 /* this */
            new org.jdbi.v3.core.statement.ColonPrefixSqlParser
            dup
            invokespecial org.jdbi.v3.core.statement.ColonPrefixSqlParser.<init>:()V
            putfield org.jdbi.v3.core.statement.SqlStatements.sqlParser:Lorg/jdbi/v3/core/statement/SqlParser;
         4: .line 36
            aload 0 /* this */
            getstatic org.jdbi.v3.core.statement.SqlLogger.NOP_SQL_LOGGER:Lorg/jdbi/v3/core/statement/SqlLogger;
            putfield org.jdbi.v3.core.statement.SqlStatements.sqlLogger:Lorg/jdbi/v3/core/statement/SqlLogger;
         5: .line 37
            return
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/jdbi/v3/core/statement/SqlStatements;

  private void <init>(org.jdbi.v3.core.statement.SqlStatements);
    descriptor: (Lorg/jdbi/v3/core/statement/SqlStatements;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
        start local 1 // org.jdbi.v3.core.statement.SqlStatements that
         0: .line 39
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 0 /* this */
            new java.util.concurrent.ConcurrentHashMap
            dup
            aload 1 /* that */
            getfield org.jdbi.v3.core.statement.SqlStatements.attributes:Ljava/util/Map;
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:(Ljava/util/Map;)V
            putfield org.jdbi.v3.core.statement.SqlStatements.attributes:Ljava/util/Map;
         2: .line 41
            aload 0 /* this */
            aload 1 /* that */
            getfield org.jdbi.v3.core.statement.SqlStatements.templateEngine:Lorg/jdbi/v3/core/statement/TemplateEngine;
            putfield org.jdbi.v3.core.statement.SqlStatements.templateEngine:Lorg/jdbi/v3/core/statement/TemplateEngine;
         3: .line 42
            aload 0 /* this */
            aload 1 /* that */
            getfield org.jdbi.v3.core.statement.SqlStatements.sqlParser:Lorg/jdbi/v3/core/statement/SqlParser;
            putfield org.jdbi.v3.core.statement.SqlStatements.sqlParser:Lorg/jdbi/v3/core/statement/SqlParser;
         4: .line 43
            aload 0 /* this */
            aload 1 /* that */
            getfield org.jdbi.v3.core.statement.SqlStatements.sqlLogger:Lorg/jdbi/v3/core/statement/SqlLogger;
            putfield org.jdbi.v3.core.statement.SqlStatements.sqlLogger:Lorg/jdbi/v3/core/statement/SqlLogger;
         5: .line 44
            return
        end local 1 // org.jdbi.v3.core.statement.SqlStatements that
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/jdbi/v3/core/statement/SqlStatements;
            0    6     1  that  Lorg/jdbi/v3/core/statement/SqlStatements;
    MethodParameters:
      Name  Flags
      that  

  public org.jdbi.v3.core.statement.SqlStatements define(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)Lorg/jdbi/v3/core/statement/SqlStatements;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object value
         0: .line 54
            aload 0 /* this */
            getfield org.jdbi.v3.core.statement.SqlStatements.attributes:Ljava/util/Map;
            aload 1 /* key */
            aload 2 /* value */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 55
            aload 0 /* this */
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String key
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/jdbi/v3/core/statement/SqlStatements;
            0    2     1    key  Ljava/lang/String;
            0    2     2  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      key    
      value  

  public org.jdbi.v3.core.statement.SqlStatements defineMap(java.util.Map<java.lang.String, ?>);
    descriptor: (Ljava/util/Map;)Lorg/jdbi/v3/core/statement/SqlStatements;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
        start local 1 // java.util.Map values
         0: .line 65
            aload 1 /* values */
            ifnull 2
         1: .line 66
            aload 0 /* this */
            getfield org.jdbi.v3.core.statement.SqlStatements.attributes:Ljava/util/Map;
            aload 1 /* values */
            invokeinterface java.util.Map.putAll:(Ljava/util/Map;)V
         2: .line 68
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // java.util.Map values
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/jdbi/v3/core/statement/SqlStatements;
            0    3     1  values  Ljava/util/Map<Ljava/lang/String;*>;
    Signature: (Ljava/util/Map<Ljava/lang/String;*>;)Lorg/jdbi/v3/core/statement/SqlStatements;
    MethodParameters:
        Name  Flags
      values  final

  public java.lang.Object getAttribute(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
        start local 1 // java.lang.String key
         0: .line 78
            aload 0 /* this */
            getfield org.jdbi.v3.core.statement.SqlStatements.attributes:Ljava/util/Map;
            aload 1 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String key
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jdbi/v3/core/statement/SqlStatements;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public java.util.Map<java.lang.String, java.lang.Object> getAttributes();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
         0: .line 87
            aload 0 /* this */
            getfield org.jdbi.v3.core.statement.SqlStatements.attributes:Ljava/util/Map;
            areturn
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jdbi/v3/core/statement/SqlStatements;
    Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;

  public org.jdbi.v3.core.statement.TemplateEngine getTemplateEngine();
    descriptor: ()Lorg/jdbi/v3/core/statement/TemplateEngine;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
         0: .line 95
            aload 0 /* this */
            getfield org.jdbi.v3.core.statement.SqlStatements.templateEngine:Lorg/jdbi/v3/core/statement/TemplateEngine;
            areturn
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jdbi/v3/core/statement/SqlStatements;

  public org.jdbi.v3.core.statement.SqlStatements setTemplateEngine(org.jdbi.v3.core.statement.TemplateEngine);
    descriptor: (Lorg/jdbi/v3/core/statement/TemplateEngine;)Lorg/jdbi/v3/core/statement/SqlStatements;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
        start local 1 // org.jdbi.v3.core.statement.TemplateEngine templateEngine
         0: .line 109
            aload 0 /* this */
            aload 1 /* templateEngine */
            putfield org.jdbi.v3.core.statement.SqlStatements.templateEngine:Lorg/jdbi/v3/core/statement/TemplateEngine;
         1: .line 110
            aload 0 /* this */
            areturn
        end local 1 // org.jdbi.v3.core.statement.TemplateEngine templateEngine
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/jdbi/v3/core/statement/SqlStatements;
            0    2     1  templateEngine  Lorg/jdbi/v3/core/statement/TemplateEngine;
    MethodParameters:
                Name  Flags
      templateEngine  

  public org.jdbi.v3.core.statement.SqlParser getSqlParser();
    descriptor: ()Lorg/jdbi/v3/core/statement/SqlParser;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
         0: .line 114
            aload 0 /* this */
            getfield org.jdbi.v3.core.statement.SqlStatements.sqlParser:Lorg/jdbi/v3/core/statement/SqlParser;
            areturn
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jdbi/v3/core/statement/SqlStatements;

  public org.jdbi.v3.core.statement.SqlStatements setSqlParser(org.jdbi.v3.core.statement.SqlParser);
    descriptor: (Lorg/jdbi/v3/core/statement/SqlParser;)Lorg/jdbi/v3/core/statement/SqlStatements;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
        start local 1 // org.jdbi.v3.core.statement.SqlParser sqlParser
         0: .line 126
            aload 0 /* this */
            aload 1 /* sqlParser */
            putfield org.jdbi.v3.core.statement.SqlStatements.sqlParser:Lorg/jdbi/v3/core/statement/SqlParser;
         1: .line 127
            aload 0 /* this */
            areturn
        end local 1 // org.jdbi.v3.core.statement.SqlParser sqlParser
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/jdbi/v3/core/statement/SqlStatements;
            0    2     1  sqlParser  Lorg/jdbi/v3/core/statement/SqlParser;
    MethodParameters:
           Name  Flags
      sqlParser  

  public org.jdbi.v3.core.statement.TimingCollector getTimingCollector();
    descriptor: ()Lorg/jdbi/v3/core/statement/TimingCollector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
         0: .line 137
            aload 0 /* this */
            invokedynamic collect(Lorg/jdbi/v3/core/statement/SqlStatements;)Lorg/jdbi/v3/core/statement/TimingCollector;
              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:
                  (JLorg/jdbi/v3/core/statement/StatementContext;)V
                  org/jdbi/v3/core/statement/SqlStatements.lambda$0(JLorg/jdbi/v3/core/statement/StatementContext;)V (7)
                  (JLorg/jdbi/v3/core/statement/StatementContext;)V
            areturn
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jdbi/v3/core/statement/SqlStatements;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public org.jdbi.v3.core.statement.SqlStatements setTimingCollector(org.jdbi.v3.core.statement.TimingCollector);
    descriptor: (Lorg/jdbi/v3/core/statement/TimingCollector;)Lorg/jdbi/v3/core/statement/SqlStatements;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
        start local 1 // org.jdbi.v3.core.statement.TimingCollector timingCollector
         0: .line 150
            aload 0 /* this */
            aload 1 /* timingCollector */
            ifnonnull 1
            getstatic org.jdbi.v3.core.statement.SqlLogger.NOP_SQL_LOGGER:Lorg/jdbi/v3/core/statement/SqlLogger;
            goto 2
      StackMap locals:
      StackMap stack: org.jdbi.v3.core.statement.SqlStatements
         1: new org.jdbi.v3.core.statement.SqlStatements$1
            dup
            aload 0 /* this */
            aload 1 /* timingCollector */
            invokespecial org.jdbi.v3.core.statement.SqlStatements$1.<init>:(Lorg/jdbi/v3/core/statement/SqlStatements;Lorg/jdbi/v3/core/statement/TimingCollector;)V
      StackMap locals: org.jdbi.v3.core.statement.SqlStatements org.jdbi.v3.core.statement.TimingCollector
      StackMap stack: org.jdbi.v3.core.statement.SqlStatements org.jdbi.v3.core.statement.SqlLogger
         2: putfield org.jdbi.v3.core.statement.SqlStatements.sqlLogger:Lorg/jdbi/v3/core/statement/SqlLogger;
         3: .line 156
            aload 0 /* this */
            areturn
        end local 1 // org.jdbi.v3.core.statement.TimingCollector timingCollector
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lorg/jdbi/v3/core/statement/SqlStatements;
            0    4     1  timingCollector  Lorg/jdbi/v3/core/statement/TimingCollector;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
                 Name  Flags
      timingCollector  

  public org.jdbi.v3.core.statement.SqlLogger getSqlLogger();
    descriptor: ()Lorg/jdbi/v3/core/statement/SqlLogger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
         0: .line 160
            aload 0 /* this */
            getfield org.jdbi.v3.core.statement.SqlStatements.sqlLogger:Lorg/jdbi/v3/core/statement/SqlLogger;
            areturn
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jdbi/v3/core/statement/SqlStatements;

  public org.jdbi.v3.core.statement.SqlStatements setSqlLogger(org.jdbi.v3.core.statement.SqlLogger);
    descriptor: (Lorg/jdbi/v3/core/statement/SqlLogger;)Lorg/jdbi/v3/core/statement/SqlStatements;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
        start local 1 // org.jdbi.v3.core.statement.SqlLogger sqlLogger
         0: .line 164
            aload 0 /* this */
            aload 1 /* sqlLogger */
            ifnonnull 1
            getstatic org.jdbi.v3.core.statement.SqlLogger.NOP_SQL_LOGGER:Lorg/jdbi/v3/core/statement/SqlLogger;
            goto 2
      StackMap locals:
      StackMap stack: org.jdbi.v3.core.statement.SqlStatements
         1: aload 1 /* sqlLogger */
      StackMap locals: org.jdbi.v3.core.statement.SqlStatements org.jdbi.v3.core.statement.SqlLogger
      StackMap stack: org.jdbi.v3.core.statement.SqlStatements org.jdbi.v3.core.statement.SqlLogger
         2: putfield org.jdbi.v3.core.statement.SqlStatements.sqlLogger:Lorg/jdbi/v3/core/statement/SqlLogger;
         3: .line 165
            aload 0 /* this */
            areturn
        end local 1 // org.jdbi.v3.core.statement.SqlLogger sqlLogger
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/jdbi/v3/core/statement/SqlStatements;
            0    4     1  sqlLogger  Lorg/jdbi/v3/core/statement/SqlLogger;
    MethodParameters:
           Name  Flags
      sqlLogger  

  public org.jdbi.v3.core.statement.SqlStatements createCopy();
    descriptor: ()Lorg/jdbi/v3/core/statement/SqlStatements;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
         0: .line 170
            new org.jdbi.v3.core.statement.SqlStatements
            dup
            aload 0 /* this */
            invokespecial org.jdbi.v3.core.statement.SqlStatements.<init>:(Lorg/jdbi/v3/core/statement/SqlStatements;)V
            areturn
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jdbi/v3/core/statement/SqlStatements;

  public org.jdbi.v3.core.config.JdbiConfig createCopy();
    descriptor: ()Lorg/jdbi/v3/core/config/JdbiConfig;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.jdbi.v3.core.statement.SqlStatements.createCopy:()Lorg/jdbi/v3/core/statement/SqlStatements;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void lambda$0(long, org.jdbi.v3.core.statement.StatementContext);
    descriptor: (JLorg/jdbi/v3/core/statement/StatementContext;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.jdbi.v3.core.statement.SqlStatements this
        start local 1 // long elapsed
        start local 3 // org.jdbi.v3.core.statement.StatementContext ctx
         0: .line 137
            aload 0 /* this */
            getfield org.jdbi.v3.core.statement.SqlStatements.sqlLogger:Lorg/jdbi/v3/core/statement/SqlLogger;
            aload 3 /* ctx */
            invokeinterface org.jdbi.v3.core.statement.SqlLogger.logAfterExecution:(Lorg/jdbi/v3/core/statement/StatementContext;)V
            return
        end local 3 // org.jdbi.v3.core.statement.StatementContext ctx
        end local 1 // long elapsed
        end local 0 // org.jdbi.v3.core.statement.SqlStatements this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/jdbi/v3/core/statement/SqlStatements;
            0    1     1  elapsed  J
            0    1     3      ctx  Lorg/jdbi/v3/core/statement/StatementContext;
}
Signature: Ljava/lang/Object;Lorg/jdbi/v3/core/config/JdbiConfig<Lorg/jdbi/v3/core/statement/SqlStatements;>;
SourceFile: "SqlStatements.java"
NestMembers:
  org.jdbi.v3.core.statement.SqlStatements$1
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  org.jdbi.v3.core.statement.SqlStatements$1