public class io.dropwizard.jdbi.args.LocalDateArgument implements org.skife.jdbi.v2.tweak.Argument
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.dropwizard.jdbi.args.LocalDateArgument
  super_class: java.lang.Object
{
  private final java.time.LocalDate value;
    descriptor: Ljava/time/LocalDate;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      javax.annotation.Nullable()

  public void <init>(java.time.LocalDate);
    descriptor: (Ljava/time/LocalDate;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.dropwizard.jdbi.args.LocalDateArgument this
        start local 1 // java.time.LocalDate value
         0: .line 21
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 22
            aload 0 /* this */
            aload 1 /* value */
            putfield io.dropwizard.jdbi.args.LocalDateArgument.value:Ljava/time/LocalDate;
         2: .line 23
            return
        end local 1 // java.time.LocalDate value
        end local 0 // io.dropwizard.jdbi.args.LocalDateArgument this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/dropwizard/jdbi/args/LocalDateArgument;
            0    3     1  value  Ljava/time/LocalDate;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        javax.annotation.Nullable()
    RuntimeVisibleParameterAnnotations: 
      0:
        javax.annotation.Nullable()
    MethodParameters:
       Name  Flags
      value  

  public void apply(int, java.sql.PreparedStatement, org.skife.jdbi.v2.StatementContext);
    descriptor: (ILjava/sql/PreparedStatement;Lorg/skife/jdbi/v2/StatementContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.dropwizard.jdbi.args.LocalDateArgument this
        start local 1 // int position
        start local 2 // java.sql.PreparedStatement statement
        start local 3 // org.skife.jdbi.v2.StatementContext ctx
         0: .line 27
            aload 0 /* this */
            getfield io.dropwizard.jdbi.args.LocalDateArgument.value:Ljava/time/LocalDate;
            ifnull 3
         1: .line 28
            aload 2 /* statement */
            iload 1 /* position */
            aload 0 /* this */
            getfield io.dropwizard.jdbi.args.LocalDateArgument.value:Ljava/time/LocalDate;
            invokevirtual java.time.LocalDate.atStartOfDay:()Ljava/time/LocalDateTime;
            invokestatic java.sql.Timestamp.valueOf:(Ljava/time/LocalDateTime;)Ljava/sql/Timestamp;
            invokeinterface java.sql.PreparedStatement.setTimestamp:(ILjava/sql/Timestamp;)V
         2: .line 29
            goto 4
         3: .line 30
      StackMap locals:
      StackMap stack:
            aload 2 /* statement */
            iload 1 /* position */
            bipush 93
            invokeinterface java.sql.PreparedStatement.setNull:(II)V
         4: .line 32
      StackMap locals:
      StackMap stack:
            return
        end local 3 // org.skife.jdbi.v2.StatementContext ctx
        end local 2 // java.sql.PreparedStatement statement
        end local 1 // int position
        end local 0 // io.dropwizard.jdbi.args.LocalDateArgument this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lio/dropwizard/jdbi/args/LocalDateArgument;
            0    5     1   position  I
            0    5     2  statement  Ljava/sql/PreparedStatement;
            0    5     3        ctx  Lorg/skife/jdbi/v2/StatementContext;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
           Name  Flags
      position   
      statement  
      ctx        
}
SourceFile: "LocalDateArgument.java"