public class org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer extends org.hibernate.loader.collection.plan.BatchingCollectionInitializer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer
  super_class: org.hibernate.loader.collection.plan.BatchingCollectionInitializer
{
  private final int[] batchSizes;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.hibernate.loader.Loader[] loaders;
    descriptor: [Lorg/hibernate/loader/Loader;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.hibernate.persister.collection.QueryableCollection, int[], org.hibernate.loader.Loader[]);
    descriptor: (Lorg/hibernate/persister/collection/QueryableCollection;[I[Lorg/hibernate/loader/Loader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer this
        start local 1 // org.hibernate.persister.collection.QueryableCollection persister
        start local 2 // int[] batchSizes
        start local 3 // org.hibernate.loader.Loader[] loaders
         0: .line 85
            aload 0 /* this */
            aload 1 /* persister */
            invokespecial org.hibernate.loader.collection.plan.BatchingCollectionInitializer.<init>:(Lorg/hibernate/persister/collection/QueryableCollection;)V
         1: .line 86
            aload 0 /* this */
            aload 2 /* batchSizes */
            putfield org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.batchSizes:[I
         2: .line 87
            aload 0 /* this */
            aload 3 /* loaders */
            putfield org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.loaders:[Lorg/hibernate/loader/Loader;
         3: .line 88
            return
        end local 3 // org.hibernate.loader.Loader[] loaders
        end local 2 // int[] batchSizes
        end local 1 // org.hibernate.persister.collection.QueryableCollection persister
        end local 0 // org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/hibernate/loader/collection/plan/LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer;
            0    4     1   persister  Lorg/hibernate/persister/collection/QueryableCollection;
            0    4     2  batchSizes  [I
            0    4     3     loaders  [Lorg/hibernate/loader/Loader;
    MethodParameters:
            Name  Flags
      persister   
      batchSizes  
      loaders     

  public void initialize(java.io.Serializable, org.hibernate.engine.spi.SessionImplementor);
    descriptor: (Ljava/io/Serializable;Lorg/hibernate/engine/spi/SessionImplementor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer this
        start local 1 // java.io.Serializable id
        start local 2 // org.hibernate.engine.spi.SessionImplementor session
         0: .line 92
            aload 2 /* session */
            invokeinterface org.hibernate.engine.spi.SessionImplementor.getPersistenceContext:()Lorg/hibernate/engine/spi/PersistenceContext;
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getBatchFetchQueue:()Lorg/hibernate/engine/spi/BatchFetchQueue;
         1: .line 93
            aload 0 /* this */
            invokevirtual org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.getCollectionPersister:()Lorg/hibernate/persister/collection/CollectionPersister;
            aload 1 /* id */
            aload 0 /* this */
            getfield org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.batchSizes:[I
            iconst_0
            iaload
            invokevirtual org.hibernate.engine.spi.BatchFetchQueue.getCollectionBatch:(Lorg/hibernate/persister/collection/CollectionPersister;Ljava/io/Serializable;I)[Ljava/io/Serializable;
         2: .line 92
            astore 3 /* batch */
        start local 3 // java.io.Serializable[] batch
         3: .line 95
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 12
         5: .line 96
      StackMap locals: java.io.Serializable[] int
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.batchSizes:[I
            iload 4 /* i */
            iaload
            istore 5 /* smallBatchSize */
        start local 5 // int smallBatchSize
         6: .line 97
            aload 3 /* batch */
            iload 5 /* smallBatchSize */
            iconst_1
            isub
            aaload
            ifnull 11
         7: .line 98
            iload 5 /* smallBatchSize */
            anewarray java.io.Serializable
            astore 6 /* smallBatch */
        start local 6 // java.io.Serializable[] smallBatch
         8: .line 99
            aload 3 /* batch */
            iconst_0
            aload 6 /* smallBatch */
            iconst_0
            iload 5 /* smallBatchSize */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 100
            aload 0 /* this */
            getfield org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.loaders:[Lorg/hibernate/loader/Loader;
            iload 4 /* i */
            aaload
            aload 2 /* session */
            aload 6 /* smallBatch */
            aload 0 /* this */
            invokevirtual org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.getCollectionPersister:()Lorg/hibernate/persister/collection/CollectionPersister;
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getKeyType:()Lorg/hibernate/type/Type;
            invokevirtual org.hibernate.loader.Loader.loadCollectionBatch:(Lorg/hibernate/engine/spi/SessionImplementor;[Ljava/io/Serializable;Lorg/hibernate/type/Type;)V
        10: .line 101
            return
        end local 6 // java.io.Serializable[] smallBatch
        end local 5 // int smallBatchSize
        11: .line 95
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 4 /* i */
            aload 0 /* this */
            getfield org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.batchSizes:[I
            arraylength
            iconst_1
            isub
            if_icmplt 5
        end local 4 // int i
        13: .line 105
            aload 0 /* this */
            getfield org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.loaders:[Lorg/hibernate/loader/Loader;
            aload 0 /* this */
            getfield org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.batchSizes:[I
            arraylength
            iconst_1
            isub
            aaload
            aload 2 /* session */
            aload 1 /* id */
            aload 0 /* this */
            invokevirtual org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.getCollectionPersister:()Lorg/hibernate/persister/collection/CollectionPersister;
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getKeyType:()Lorg/hibernate/type/Type;
            invokevirtual org.hibernate.loader.Loader.loadCollection:(Lorg/hibernate/engine/spi/SessionImplementor;Ljava/io/Serializable;Lorg/hibernate/type/Type;)V
        14: .line 106
            return
        end local 3 // java.io.Serializable[] batch
        end local 2 // org.hibernate.engine.spi.SessionImplementor session
        end local 1 // java.io.Serializable id
        end local 0 // org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   15     0            this  Lorg/hibernate/loader/collection/plan/LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer;
            0   15     1              id  Ljava/io/Serializable;
            0   15     2         session  Lorg/hibernate/engine/spi/SessionImplementor;
            3   15     3           batch  [Ljava/io/Serializable;
            4   13     4               i  I
            6   11     5  smallBatchSize  I
            8   11     6      smallBatch  [Ljava/io/Serializable;
    Exceptions:
      throws org.hibernate.HibernateException
    MethodParameters:
         Name  Flags
      id       
      session  
}
SourceFile: "LegacyBatchingCollectionInitializerBuilder.java"
NestHost: org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder
InnerClasses:
  public LegacyBatchingCollectionInitializer = org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer of org.hibernate.loader.collection.plan.LegacyBatchingCollectionInitializerBuilder