class org.springframework.jdbc.core.BatchUpdateUtils$1 implements org.springframework.jdbc.core.BatchPreparedStatementSetter
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.springframework.jdbc.core.BatchUpdateUtils$1
  super_class: java.lang.Object
{
  private final java.util.List val$batchArgs;
    descriptor: Ljava/util/List;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final int[] val$columnTypes;
    descriptor: [I
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  void <init>(java.util.List, int[]);
    descriptor: (Ljava/util/List;[I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.springframework.jdbc.core.BatchUpdateUtils$1 this
         0: .line 46
            aload 0 /* this */
            aload 1
            putfield org.springframework.jdbc.core.BatchUpdateUtils$1.val$batchArgs:Ljava/util/List;
            aload 0 /* this */
            aload 2
            putfield org.springframework.jdbc.core.BatchUpdateUtils$1.val$columnTypes:[I
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.springframework.jdbc.core.BatchUpdateUtils$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/jdbc/core/BatchUpdateUtils$1;
    MethodParameters:
                 Name  Flags
      val$batchArgs    final
      val$columnTypes  final

  public void setValues(java.sql.PreparedStatement, int);
    descriptor: (Ljava/sql/PreparedStatement;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.springframework.jdbc.core.BatchUpdateUtils$1 this
        start local 1 // java.sql.PreparedStatement ps
        start local 2 // int i
         0: .line 49
            aload 0 /* this */
            getfield org.springframework.jdbc.core.BatchUpdateUtils$1.val$batchArgs:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.Object[]
            astore 3 /* values */
        start local 3 // java.lang.Object[] values
         1: .line 50
            aload 3 /* values */
            aload 1 /* ps */
            aload 0 /* this */
            getfield org.springframework.jdbc.core.BatchUpdateUtils$1.val$columnTypes:[I
            invokestatic org.springframework.jdbc.core.BatchUpdateUtils.setStatementParameters:([Ljava/lang/Object;Ljava/sql/PreparedStatement;[I)V
         2: .line 51
            return
        end local 3 // java.lang.Object[] values
        end local 2 // int i
        end local 1 // java.sql.PreparedStatement ps
        end local 0 // org.springframework.jdbc.core.BatchUpdateUtils$1 this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/springframework/jdbc/core/BatchUpdateUtils$1;
            0    3     1      ps  Ljava/sql/PreparedStatement;
            0    3     2       i  I
            1    3     3  values  [Ljava/lang/Object;
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
      Name  Flags
      ps    
      i     

  public int getBatchSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.jdbc.core.BatchUpdateUtils$1 this
         0: .line 54
            aload 0 /* this */
            getfield org.springframework.jdbc.core.BatchUpdateUtils$1.val$batchArgs:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // org.springframework.jdbc.core.BatchUpdateUtils$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/jdbc/core/BatchUpdateUtils$1;
}
SourceFile: "BatchUpdateUtils.java"
EnclosingMethod: org.springframework.jdbc.core.BatchUpdateUtils.executeBatchUpdate:(Ljava/lang/String;Ljava/util/List;[ILorg/springframework/jdbc/core/JdbcOperations;)[I
NestHost: org.springframework.jdbc.core.BatchUpdateUtils
InnerClasses:
  org.springframework.jdbc.core.BatchUpdateUtils$1