public class org.hibernate.engine.spi.BatchFetchQueue
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.engine.spi.BatchFetchQueue
  super_class: java.lang.Object
{
  private static final org.jboss.logging.Logger LOG;
    descriptor: Lorg/jboss/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final org.hibernate.engine.spi.PersistenceContext context;
    descriptor: Lorg/hibernate/engine/spi/PersistenceContext;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Map<org.hibernate.engine.spi.EntityKey, org.hibernate.engine.spi.SubselectFetch> subselectsByEntityKey;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Lorg/hibernate/engine/spi/EntityKey;Lorg/hibernate/engine/spi/SubselectFetch;>;

  private final java.util.Map<java.lang.String, java.util.LinkedHashSet<org.hibernate.engine.spi.EntityKey>> batchLoadableEntityKeys;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/util/LinkedHashSet<Lorg/hibernate/engine/spi/EntityKey;>;>;

  private final java.util.Map<java.lang.String, java.util.LinkedHashMap<org.hibernate.engine.spi.CollectionEntry, org.hibernate.collection.spi.PersistentCollection>> batchLoadableCollections;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/util/LinkedHashMap<Lorg/hibernate/engine/spi/CollectionEntry;Lorg/hibernate/collection/spi/PersistentCollection;>;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 37
            ldc Lorg/hibernate/engine/spi/BatchFetchQueue;
            invokestatic org.hibernate.internal.CoreLogging.logger:(Ljava/lang/Class;)Lorg/jboss/logging/Logger;
            putstatic org.hibernate.engine.spi.BatchFetchQueue.LOG:Lorg/jboss/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(org.hibernate.engine.spi.PersistenceContext);
    descriptor: (Lorg/hibernate/engine/spi/PersistenceContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
        start local 1 // org.hibernate.engine.spi.PersistenceContext context
         0: .line 67
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            new java.util.HashMap
            dup
            bipush 8
            invokespecial java.util.HashMap.<init>:(I)V
            putfield org.hibernate.engine.spi.BatchFetchQueue.subselectsByEntityKey:Ljava/util/Map;
         2: .line 54
            aload 0 /* this */
            new java.util.HashMap
            dup
            bipush 8
            invokespecial java.util.HashMap.<init>:(I)V
            putfield org.hibernate.engine.spi.BatchFetchQueue.batchLoadableEntityKeys:Ljava/util/Map;
         3: .line 60
            aload 0 /* this */
            new java.util.HashMap
            dup
            bipush 8
            invokespecial java.util.HashMap.<init>:(I)V
            putfield org.hibernate.engine.spi.BatchFetchQueue.batchLoadableCollections:Ljava/util/Map;
         4: .line 68
            aload 0 /* this */
            aload 1 /* context */
            putfield org.hibernate.engine.spi.BatchFetchQueue.context:Lorg/hibernate/engine/spi/PersistenceContext;
         5: .line 69
            return
        end local 1 // org.hibernate.engine.spi.PersistenceContext context
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/hibernate/engine/spi/BatchFetchQueue;
            0    6     1  context  Lorg/hibernate/engine/spi/PersistenceContext;
    MethodParameters:
         Name  Flags
      context  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
         0: .line 77
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.batchLoadableEntityKeys:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         1: .line 78
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.batchLoadableCollections:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         2: .line 79
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.subselectsByEntityKey:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         3: .line 80
            return
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/hibernate/engine/spi/BatchFetchQueue;

  public org.hibernate.engine.spi.SubselectFetch getSubselect(org.hibernate.engine.spi.EntityKey);
    descriptor: (Lorg/hibernate/engine/spi/EntityKey;)Lorg/hibernate/engine/spi/SubselectFetch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
        start local 1 // org.hibernate.engine.spi.EntityKey key
         0: .line 93
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.subselectsByEntityKey:Ljava/util/Map;
            aload 1 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.hibernate.engine.spi.SubselectFetch
            areturn
        end local 1 // org.hibernate.engine.spi.EntityKey key
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/BatchFetchQueue;
            0    1     1   key  Lorg/hibernate/engine/spi/EntityKey;
    MethodParameters:
      Name  Flags
      key   

  public void addSubselect(org.hibernate.engine.spi.EntityKey, org.hibernate.engine.spi.SubselectFetch);
    descriptor: (Lorg/hibernate/engine/spi/EntityKey;Lorg/hibernate/engine/spi/SubselectFetch;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
        start local 1 // org.hibernate.engine.spi.EntityKey key
        start local 2 // org.hibernate.engine.spi.SubselectFetch subquery
         0: .line 103
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.subselectsByEntityKey:Ljava/util/Map;
            aload 1 /* key */
            aload 2 /* subquery */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 104
            return
        end local 2 // org.hibernate.engine.spi.SubselectFetch subquery
        end local 1 // org.hibernate.engine.spi.EntityKey key
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/hibernate/engine/spi/BatchFetchQueue;
            0    2     1       key  Lorg/hibernate/engine/spi/EntityKey;
            0    2     2  subquery  Lorg/hibernate/engine/spi/SubselectFetch;
    MethodParameters:
          Name  Flags
      key       
      subquery  

  public void removeSubselect(org.hibernate.engine.spi.EntityKey);
    descriptor: (Lorg/hibernate/engine/spi/EntityKey;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
        start local 1 // org.hibernate.engine.spi.EntityKey key
         0: .line 113
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.subselectsByEntityKey:Ljava/util/Map;
            aload 1 /* key */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 114
            return
        end local 1 // org.hibernate.engine.spi.EntityKey key
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/engine/spi/BatchFetchQueue;
            0    2     1   key  Lorg/hibernate/engine/spi/EntityKey;
    MethodParameters:
      Name  Flags
      key   

  public void addBatchLoadableEntityKey(org.hibernate.engine.spi.EntityKey);
    descriptor: (Lorg/hibernate/engine/spi/EntityKey;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
        start local 1 // org.hibernate.engine.spi.EntityKey key
         0: .line 129
            aload 1 /* key */
            invokevirtual org.hibernate.engine.spi.EntityKey.isBatchLoadable:()Z
            ifeq 6
         1: .line 130
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.batchLoadableEntityKeys:Ljava/util/Map;
            aload 1 /* key */
            invokevirtual org.hibernate.engine.spi.EntityKey.getEntityName:()Ljava/lang/String;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.LinkedHashSet
            astore 2 /* set */
        start local 2 // java.util.LinkedHashSet set
         2: .line 131
            aload 2 /* set */
            ifnonnull 5
         3: .line 132
            new java.util.LinkedHashSet
            dup
            bipush 8
            invokespecial java.util.LinkedHashSet.<init>:(I)V
            astore 2 /* set */
         4: .line 133
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.batchLoadableEntityKeys:Ljava/util/Map;
            aload 1 /* key */
            invokevirtual org.hibernate.engine.spi.EntityKey.getEntityName:()Ljava/lang/String;
            aload 2 /* set */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 135
      StackMap locals: java.util.LinkedHashSet
      StackMap stack:
            aload 2 /* set */
            aload 1 /* key */
            invokevirtual java.util.LinkedHashSet.add:(Ljava/lang/Object;)Z
            pop
        end local 2 // java.util.LinkedHashSet set
         6: .line 137
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.hibernate.engine.spi.EntityKey key
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/hibernate/engine/spi/BatchFetchQueue;
            0    7     1   key  Lorg/hibernate/engine/spi/EntityKey;
            2    6     2   set  Ljava/util/LinkedHashSet<Lorg/hibernate/engine/spi/EntityKey;>;
    MethodParameters:
      Name  Flags
      key   

  public void removeBatchLoadableEntityKey(org.hibernate.engine.spi.EntityKey);
    descriptor: (Lorg/hibernate/engine/spi/EntityKey;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
        start local 1 // org.hibernate.engine.spi.EntityKey key
         0: .line 146
            aload 1 /* key */
            invokevirtual org.hibernate.engine.spi.EntityKey.isBatchLoadable:()Z
            ifeq 4
         1: .line 147
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.batchLoadableEntityKeys:Ljava/util/Map;
            aload 1 /* key */
            invokevirtual org.hibernate.engine.spi.EntityKey.getEntityName:()Ljava/lang/String;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.LinkedHashSet
            astore 2 /* set */
        start local 2 // java.util.LinkedHashSet set
         2: .line 148
            aload 2 /* set */
            ifnull 4
         3: .line 149
            aload 2 /* set */
            aload 1 /* key */
            invokevirtual java.util.LinkedHashSet.remove:(Ljava/lang/Object;)Z
            pop
        end local 2 // java.util.LinkedHashSet set
         4: .line 152
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.hibernate.engine.spi.EntityKey key
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/hibernate/engine/spi/BatchFetchQueue;
            0    5     1   key  Lorg/hibernate/engine/spi/EntityKey;
            2    4     2   set  Ljava/util/LinkedHashSet<Lorg/hibernate/engine/spi/EntityKey;>;
    MethodParameters:
      Name  Flags
      key   

  public boolean containsEntityKey(org.hibernate.engine.spi.EntityKey);
    descriptor: (Lorg/hibernate/engine/spi/EntityKey;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
        start local 1 // org.hibernate.engine.spi.EntityKey key
         0: .line 158
            aload 1 /* key */
            invokevirtual org.hibernate.engine.spi.EntityKey.isBatchLoadable:()Z
            ifeq 4
         1: .line 159
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.batchLoadableEntityKeys:Ljava/util/Map;
            aload 1 /* key */
            invokevirtual org.hibernate.engine.spi.EntityKey.getEntityName:()Ljava/lang/String;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.LinkedHashSet
            astore 2 /* set */
        start local 2 // java.util.LinkedHashSet set
         2: .line 160
            aload 2 /* set */
            ifnull 4
         3: .line 161
            aload 2 /* set */
            aload 1 /* key */
            invokevirtual java.util.LinkedHashSet.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.util.LinkedHashSet set
         4: .line 164
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // org.hibernate.engine.spi.EntityKey key
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/hibernate/engine/spi/BatchFetchQueue;
            0    5     1   key  Lorg/hibernate/engine/spi/EntityKey;
            2    4     2   set  Ljava/util/LinkedHashSet<Lorg/hibernate/engine/spi/EntityKey;>;
    MethodParameters:
      Name  Flags
      key   

  public java.io.Serializable[] getEntityBatch(org.hibernate.persister.entity.EntityPersister, java.io.Serializable, int, org.hibernate.EntityMode);
    descriptor: (Lorg/hibernate/persister/entity/EntityPersister;Ljava/io/Serializable;ILorg/hibernate/EntityMode;)[Ljava/io/Serializable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=12, args_size=5
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
        start local 1 // org.hibernate.persister.entity.EntityPersister persister
        start local 2 // java.io.Serializable id
        start local 3 // int batchSize
        start local 4 // org.hibernate.EntityMode entityMode
         0: .line 182
            iload 3 /* batchSize */
            anewarray java.io.Serializable
            astore 5 /* ids */
        start local 5 // java.io.Serializable[] ids
         1: .line 183
            aload 5 /* ids */
            iconst_0
            aload 2 /* id */
            aastore
         2: .line 184
            iconst_1
            istore 6 /* i */
        start local 6 // int i
         3: .line 185
            iconst_m1
            istore 7 /* end */
        start local 7 // int end
         4: .line 186
            iconst_0
            istore 8 /* checkForEnd */
        start local 8 // boolean checkForEnd
         5: .line 190
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.batchLoadableEntityKeys:Ljava/util/Map;
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.entity.EntityPersister.getEntityName:()Ljava/lang/String;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.LinkedHashSet
            astore 9 /* set */
        start local 9 // java.util.LinkedHashSet set
         6: .line 191
            aload 9 /* set */
            ifnull 21
         7: .line 192
            aload 9 /* set */
            invokevirtual java.util.LinkedHashSet.iterator:()Ljava/util/Iterator;
            astore 11
            goto 20
      StackMap locals: org.hibernate.engine.spi.BatchFetchQueue org.hibernate.persister.entity.EntityPersister java.io.Serializable int org.hibernate.EntityMode java.io.Serializable[] int int int java.util.LinkedHashSet top java.util.Iterator
      StackMap stack:
         8: aload 11
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.hibernate.engine.spi.EntityKey
            astore 10 /* key */
        start local 10 // org.hibernate.engine.spi.EntityKey key
         9: .line 193
            iload 8 /* checkForEnd */
            ifeq 11
            iload 6 /* i */
            iload 7 /* end */
            if_icmpne 11
        10: .line 195
            aload 5 /* ids */
            areturn
        11: .line 197
      StackMap locals: org.hibernate.engine.spi.BatchFetchQueue org.hibernate.persister.entity.EntityPersister java.io.Serializable int org.hibernate.EntityMode java.io.Serializable[] int int int java.util.LinkedHashSet org.hibernate.engine.spi.EntityKey java.util.Iterator
      StackMap stack:
            aload 1 /* persister */
            invokeinterface org.hibernate.persister.entity.EntityPersister.getIdentifierType:()Lorg/hibernate/type/Type;
            aload 2 /* id */
            aload 10 /* key */
            invokevirtual org.hibernate.engine.spi.EntityKey.getIdentifier:()Ljava/io/Serializable;
            invokeinterface org.hibernate.type.Type.isEqual:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 14
        12: .line 198
            iload 6 /* i */
            istore 7 /* end */
        13: .line 199
            goto 16
        14: .line 201
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 10 /* key */
            aload 1 /* persister */
            invokevirtual org.hibernate.engine.spi.BatchFetchQueue.isCached:(Lorg/hibernate/engine/spi/EntityKey;Lorg/hibernate/persister/entity/EntityPersister;)Z
            ifne 16
        15: .line 202
            aload 5 /* ids */
            iload 6 /* i */
            iinc 6 /* i */ 1
            aload 10 /* key */
            invokevirtual org.hibernate.engine.spi.EntityKey.getIdentifier:()Ljava/io/Serializable;
            aastore
        16: .line 205
      StackMap locals:
      StackMap stack:
            iload 6 /* i */
            iload 3 /* batchSize */
            if_icmpne 20
        17: .line 206
            iconst_1
            istore 6 /* i */
        18: .line 207
            iload 7 /* end */
            iconst_m1
            if_icmpeq 20
        19: .line 208
            iconst_1
            istore 8 /* checkForEnd */
        end local 10 // org.hibernate.engine.spi.EntityKey key
        20: .line 192
      StackMap locals: org.hibernate.engine.spi.BatchFetchQueue org.hibernate.persister.entity.EntityPersister java.io.Serializable int org.hibernate.EntityMode java.io.Serializable[] int int int java.util.LinkedHashSet top java.util.Iterator
      StackMap stack:
            aload 11
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        21: .line 213
      StackMap locals: org.hibernate.engine.spi.BatchFetchQueue org.hibernate.persister.entity.EntityPersister java.io.Serializable int org.hibernate.EntityMode java.io.Serializable[] int int int java.util.LinkedHashSet
      StackMap stack:
            aload 5 /* ids */
            areturn
        end local 9 // java.util.LinkedHashSet set
        end local 8 // boolean checkForEnd
        end local 7 // int end
        end local 6 // int i
        end local 5 // java.io.Serializable[] ids
        end local 4 // org.hibernate.EntityMode entityMode
        end local 3 // int batchSize
        end local 2 // java.io.Serializable id
        end local 1 // org.hibernate.persister.entity.EntityPersister persister
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   22     0         this  Lorg/hibernate/engine/spi/BatchFetchQueue;
            0   22     1    persister  Lorg/hibernate/persister/entity/EntityPersister;
            0   22     2           id  Ljava/io/Serializable;
            0   22     3    batchSize  I
            0   22     4   entityMode  Lorg/hibernate/EntityMode;
            1   22     5          ids  [Ljava/io/Serializable;
            3   22     6            i  I
            4   22     7          end  I
            5   22     8  checkForEnd  Z
            6   22     9          set  Ljava/util/LinkedHashSet<Lorg/hibernate/engine/spi/EntityKey;>;
            9   20    10          key  Lorg/hibernate/engine/spi/EntityKey;
    MethodParameters:
            Name  Flags
      persister   final
      id          final
      batchSize   final
      entityMode  final

  private boolean isCached(org.hibernate.engine.spi.EntityKey, org.hibernate.persister.entity.EntityPersister);
    descriptor: (Lorg/hibernate/engine/spi/EntityKey;Lorg/hibernate/persister/entity/EntityPersister;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
        start local 1 // org.hibernate.engine.spi.EntityKey entityKey
        start local 2 // org.hibernate.persister.entity.EntityPersister persister
         0: .line 217
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.context:Lorg/hibernate/engine/spi/PersistenceContext;
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getSession:()Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            astore 3 /* session */
        start local 3 // org.hibernate.engine.spi.SharedSessionContractImplementor session
         1: .line 218
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.context:Lorg/hibernate/engine/spi/PersistenceContext;
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getSession:()Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getCacheMode:()Lorg/hibernate/CacheMode;
            invokevirtual org.hibernate.CacheMode.isGetEnabled:()Z
            ifeq 11
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.entity.EntityPersister.canReadFromCache:()Z
            ifeq 11
         2: .line 219
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.entity.EntityPersister.getCacheAccessStrategy:()Lorg/hibernate/cache/spi/access/EntityDataAccess;
            astore 4 /* cache */
        start local 4 // org.hibernate.cache.spi.access.EntityDataAccess cache
         3: .line 220
            aload 4 /* cache */
         4: .line 221
            aload 1 /* entityKey */
            invokevirtual org.hibernate.engine.spi.EntityKey.getIdentifier:()Ljava/io/Serializable;
         5: .line 222
            aload 2 /* persister */
         6: .line 223
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getFactory:()Lorg/hibernate/engine/spi/SessionFactoryImplementor;
         7: .line 224
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getTenantIdentifier:()Ljava/lang/String;
         8: .line 220
            invokeinterface org.hibernate.cache.spi.access.EntityDataAccess.generateCacheKey:(Ljava/lang/Object;Lorg/hibernate/persister/entity/EntityPersister;Lorg/hibernate/engine/spi/SessionFactoryImplementor;Ljava/lang/String;)Ljava/lang/Object;
            astore 5 /* key */
        start local 5 // java.lang.Object key
         9: .line 226
            aload 3 /* session */
            aload 5 /* key */
            aload 4 /* cache */
            invokestatic org.hibernate.engine.internal.CacheHelper.fromSharedCache:(Lorg/hibernate/engine/spi/SharedSessionContractImplementor;Ljava/lang/Object;Lorg/hibernate/cache/spi/access/CachedDomainDataAccess;)Ljava/io/Serializable;
            ifnull 10
            iconst_1
            ireturn
      StackMap locals: org.hibernate.engine.spi.SharedSessionContractImplementor org.hibernate.cache.spi.access.EntityDataAccess java.lang.Object
      StackMap stack:
        10: iconst_0
            ireturn
        end local 5 // java.lang.Object key
        end local 4 // org.hibernate.cache.spi.access.EntityDataAccess cache
        11: .line 228
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // org.hibernate.engine.spi.SharedSessionContractImplementor session
        end local 2 // org.hibernate.persister.entity.EntityPersister persister
        end local 1 // org.hibernate.engine.spi.EntityKey entityKey
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/hibernate/engine/spi/BatchFetchQueue;
            0   12     1  entityKey  Lorg/hibernate/engine/spi/EntityKey;
            0   12     2  persister  Lorg/hibernate/persister/entity/EntityPersister;
            1   12     3    session  Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            3   11     4      cache  Lorg/hibernate/cache/spi/access/EntityDataAccess;
            9   11     5        key  Ljava/lang/Object;
    MethodParameters:
           Name  Flags
      entityKey  
      persister  

  public void addBatchLoadableCollection(org.hibernate.collection.spi.PersistentCollection, org.hibernate.engine.spi.CollectionEntry);
    descriptor: (Lorg/hibernate/collection/spi/PersistentCollection;Lorg/hibernate/engine/spi/CollectionEntry;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
        start local 1 // org.hibernate.collection.spi.PersistentCollection collection
        start local 2 // org.hibernate.engine.spi.CollectionEntry ce
         0: .line 239
            aload 2 /* ce */
            invokevirtual org.hibernate.engine.spi.CollectionEntry.getLoadedPersister:()Lorg/hibernate/persister/collection/CollectionPersister;
            astore 3 /* persister */
        start local 3 // org.hibernate.persister.collection.CollectionPersister persister
         1: .line 241
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.batchLoadableCollections:Ljava/util/Map;
            aload 3 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getRole:()Ljava/lang/String;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.LinkedHashMap
            astore 4 /* map */
        start local 4 // java.util.LinkedHashMap map
         2: .line 242
            aload 4 /* map */
            ifnonnull 5
         3: .line 243
            new java.util.LinkedHashMap
            dup
            bipush 16
            invokespecial java.util.LinkedHashMap.<init>:(I)V
            astore 4 /* map */
         4: .line 244
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.batchLoadableCollections:Ljava/util/Map;
            aload 3 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getRole:()Ljava/lang/String;
            aload 4 /* map */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 246
      StackMap locals: org.hibernate.persister.collection.CollectionPersister java.util.LinkedHashMap
      StackMap stack:
            aload 4 /* map */
            aload 2 /* ce */
            aload 1 /* collection */
            invokevirtual java.util.LinkedHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         6: .line 247
            return
        end local 4 // java.util.LinkedHashMap map
        end local 3 // org.hibernate.persister.collection.CollectionPersister persister
        end local 2 // org.hibernate.engine.spi.CollectionEntry ce
        end local 1 // org.hibernate.collection.spi.PersistentCollection collection
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/hibernate/engine/spi/BatchFetchQueue;
            0    7     1  collection  Lorg/hibernate/collection/spi/PersistentCollection;
            0    7     2          ce  Lorg/hibernate/engine/spi/CollectionEntry;
            1    7     3   persister  Lorg/hibernate/persister/collection/CollectionPersister;
            2    7     4         map  Ljava/util/LinkedHashMap<Lorg/hibernate/engine/spi/CollectionEntry;Lorg/hibernate/collection/spi/PersistentCollection;>;
    MethodParameters:
            Name  Flags
      collection  
      ce          

  public void removeBatchLoadableCollection(org.hibernate.engine.spi.CollectionEntry);
    descriptor: (Lorg/hibernate/engine/spi/CollectionEntry;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
        start local 1 // org.hibernate.engine.spi.CollectionEntry ce
         0: .line 255
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.batchLoadableCollections:Ljava/util/Map;
            aload 1 /* ce */
            invokevirtual org.hibernate.engine.spi.CollectionEntry.getLoadedPersister:()Lorg/hibernate/persister/collection/CollectionPersister;
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getRole:()Ljava/lang/String;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.LinkedHashMap
            astore 2 /* map */
        start local 2 // java.util.LinkedHashMap map
         1: .line 256
            aload 2 /* map */
            ifnull 3
         2: .line 257
            aload 2 /* map */
            aload 1 /* ce */
            invokevirtual java.util.LinkedHashMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 259
      StackMap locals: java.util.LinkedHashMap
      StackMap stack:
            return
        end local 2 // java.util.LinkedHashMap map
        end local 1 // org.hibernate.engine.spi.CollectionEntry ce
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/hibernate/engine/spi/BatchFetchQueue;
            0    4     1    ce  Lorg/hibernate/engine/spi/CollectionEntry;
            1    4     2   map  Ljava/util/LinkedHashMap<Lorg/hibernate/engine/spi/CollectionEntry;Lorg/hibernate/collection/spi/PersistentCollection;>;
    MethodParameters:
      Name  Flags
      ce    

  public java.io.Serializable[] getCollectionBatch(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, int);
    descriptor: (Lorg/hibernate/persister/collection/CollectionPersister;Ljava/io/Serializable;I)[Ljava/io/Serializable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=14, args_size=4
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
        start local 1 // org.hibernate.persister.collection.CollectionPersister collectionPersister
        start local 2 // java.io.Serializable id
        start local 3 // int batchSize
         0: .line 274
            iload 3 /* batchSize */
            anewarray java.io.Serializable
            astore 4 /* keys */
        start local 4 // java.io.Serializable[] keys
         1: .line 275
            aload 4 /* keys */
            iconst_0
            aload 2 /* id */
            aastore
         2: .line 277
            iconst_1
            istore 5 /* i */
        start local 5 // int i
         3: .line 278
            iconst_m1
            istore 6 /* end */
        start local 6 // int end
         4: .line 279
            iconst_0
            istore 7 /* checkForEnd */
        start local 7 // boolean checkForEnd
         5: .line 281
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.batchLoadableCollections:Ljava/util/Map;
            aload 1 /* collectionPersister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getRole:()Ljava/lang/String;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.LinkedHashMap
            astore 8 /* map */
        start local 8 // java.util.LinkedHashMap map
         6: .line 282
            aload 8 /* map */
            ifnull 33
         7: .line 283
            aload 8 /* map */
            invokevirtual java.util.LinkedHashMap.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 10
            goto 32
      StackMap locals: org.hibernate.engine.spi.BatchFetchQueue org.hibernate.persister.collection.CollectionPersister java.io.Serializable int java.io.Serializable[] int int int java.util.LinkedHashMap top java.util.Iterator
      StackMap stack:
         8: aload 10
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 9 /* me */
        start local 9 // java.util.Map$Entry me
         9: .line 284
            aload 9 /* me */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast org.hibernate.engine.spi.CollectionEntry
            astore 11 /* ce */
        start local 11 // org.hibernate.engine.spi.CollectionEntry ce
        10: .line 285
            aload 9 /* me */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast org.hibernate.collection.spi.PersistentCollection
            astore 12 /* collection */
        start local 12 // org.hibernate.collection.spi.PersistentCollection collection
        11: .line 287
            aload 11 /* ce */
            invokevirtual org.hibernate.engine.spi.CollectionEntry.getLoadedKey:()Ljava/io/Serializable;
            ifnonnull 13
        12: .line 293
            goto 32
        13: .line 296
      StackMap locals: org.hibernate.engine.spi.BatchFetchQueue org.hibernate.persister.collection.CollectionPersister java.io.Serializable int java.io.Serializable[] int int int java.util.LinkedHashMap java.util.Map$Entry java.util.Iterator org.hibernate.engine.spi.CollectionEntry org.hibernate.collection.spi.PersistentCollection
      StackMap stack:
            aload 12 /* collection */
            invokeinterface org.hibernate.collection.spi.PersistentCollection.wasInitialized:()Z
            ifeq 16
        14: .line 298
            getstatic org.hibernate.engine.spi.BatchFetchQueue.LOG:Lorg/jboss/logging/Logger;
            ldc "Encountered initialized collection in BatchFetchQueue, this should not happen."
            invokevirtual org.jboss.logging.Logger.warn:(Ljava/lang/Object;)V
        15: .line 299
            goto 32
        16: .line 302
      StackMap locals:
      StackMap stack:
            iload 7 /* checkForEnd */
            ifeq 18
            iload 5 /* i */
            iload 6 /* end */
            if_icmpne 18
        17: .line 303
            aload 4 /* keys */
            areturn
        18: .line 306
      StackMap locals:
      StackMap stack:
            aload 1 /* collectionPersister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getKeyType:()Lorg/hibernate/type/Type;
        19: .line 307
            aload 2 /* id */
        20: .line 308
            aload 11 /* ce */
            invokevirtual org.hibernate.engine.spi.CollectionEntry.getLoadedKey:()Ljava/io/Serializable;
        21: .line 309
            aload 1 /* collectionPersister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getFactory:()Lorg/hibernate/engine/spi/SessionFactoryImplementor;
        22: .line 306
            invokeinterface org.hibernate.type.Type.isEqual:(Ljava/lang/Object;Ljava/lang/Object;Lorg/hibernate/engine/spi/SessionFactoryImplementor;)Z
            istore 13 /* isEqual */
        start local 13 // boolean isEqual
        23: .line 312
            iload 13 /* isEqual */
            ifeq 26
        24: .line 313
            iload 5 /* i */
            istore 6 /* end */
        25: .line 315
            goto 28
        26: .line 316
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 11 /* ce */
            invokevirtual org.hibernate.engine.spi.CollectionEntry.getLoadedKey:()Ljava/io/Serializable;
            aload 1 /* collectionPersister */
            invokevirtual org.hibernate.engine.spi.BatchFetchQueue.isCached:(Ljava/io/Serializable;Lorg/hibernate/persister/collection/CollectionPersister;)Z
            ifne 28
        27: .line 317
            aload 4 /* keys */
            iload 5 /* i */
            iinc 5 /* i */ 1
            aload 11 /* ce */
            invokevirtual org.hibernate.engine.spi.CollectionEntry.getLoadedKey:()Ljava/io/Serializable;
            aastore
        28: .line 321
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iload 3 /* batchSize */
            if_icmpne 32
        29: .line 322
            iconst_1
            istore 5 /* i */
        30: .line 323
            iload 6 /* end */
            iconst_m1
            if_icmpeq 32
        31: .line 324
            iconst_1
            istore 7 /* checkForEnd */
        end local 13 // boolean isEqual
        end local 12 // org.hibernate.collection.spi.PersistentCollection collection
        end local 11 // org.hibernate.engine.spi.CollectionEntry ce
        end local 9 // java.util.Map$Entry me
        32: .line 283
      StackMap locals: org.hibernate.engine.spi.BatchFetchQueue org.hibernate.persister.collection.CollectionPersister java.io.Serializable int java.io.Serializable[] int int int java.util.LinkedHashMap top java.util.Iterator
      StackMap stack:
            aload 10
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        33: .line 329
      StackMap locals: org.hibernate.engine.spi.BatchFetchQueue org.hibernate.persister.collection.CollectionPersister java.io.Serializable int java.io.Serializable[] int int int java.util.LinkedHashMap
      StackMap stack:
            aload 4 /* keys */
            areturn
        end local 8 // java.util.LinkedHashMap map
        end local 7 // boolean checkForEnd
        end local 6 // int end
        end local 5 // int i
        end local 4 // java.io.Serializable[] keys
        end local 3 // int batchSize
        end local 2 // java.io.Serializable id
        end local 1 // org.hibernate.persister.collection.CollectionPersister collectionPersister
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   34     0                 this  Lorg/hibernate/engine/spi/BatchFetchQueue;
            0   34     1  collectionPersister  Lorg/hibernate/persister/collection/CollectionPersister;
            0   34     2                   id  Ljava/io/Serializable;
            0   34     3            batchSize  I
            1   34     4                 keys  [Ljava/io/Serializable;
            3   34     5                    i  I
            4   34     6                  end  I
            5   34     7          checkForEnd  Z
            6   34     8                  map  Ljava/util/LinkedHashMap<Lorg/hibernate/engine/spi/CollectionEntry;Lorg/hibernate/collection/spi/PersistentCollection;>;
            9   32     9                   me  Ljava/util/Map$Entry<Lorg/hibernate/engine/spi/CollectionEntry;Lorg/hibernate/collection/spi/PersistentCollection;>;
           10   32    11                   ce  Lorg/hibernate/engine/spi/CollectionEntry;
           11   32    12           collection  Lorg/hibernate/collection/spi/PersistentCollection;
           23   32    13              isEqual  Z
    MethodParameters:
                     Name  Flags
      collectionPersister  final
      id                   final
      batchSize            final

  private boolean isCached(java.io.Serializable, org.hibernate.persister.collection.CollectionPersister);
    descriptor: (Ljava/io/Serializable;Lorg/hibernate/persister/collection/CollectionPersister;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.hibernate.engine.spi.BatchFetchQueue this
        start local 1 // java.io.Serializable collectionKey
        start local 2 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 333
            aload 0 /* this */
            getfield org.hibernate.engine.spi.BatchFetchQueue.context:Lorg/hibernate/engine/spi/PersistenceContext;
            invokeinterface org.hibernate.engine.spi.PersistenceContext.getSession:()Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            astore 3 /* session */
        start local 3 // org.hibernate.engine.spi.SharedSessionContractImplementor session
         1: .line 334
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getCacheMode:()Lorg/hibernate/CacheMode;
            invokevirtual org.hibernate.CacheMode.isGetEnabled:()Z
            ifeq 11
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.hasCache:()Z
            ifeq 11
         2: .line 335
            aload 2 /* persister */
            invokeinterface org.hibernate.persister.collection.CollectionPersister.getCacheAccessStrategy:()Lorg/hibernate/cache/spi/access/CollectionDataAccess;
            astore 4 /* cache */
        start local 4 // org.hibernate.cache.spi.access.CollectionDataAccess cache
         3: .line 336
            aload 4 /* cache */
         4: .line 337
            aload 1 /* collectionKey */
         5: .line 338
            aload 2 /* persister */
         6: .line 339
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getFactory:()Lorg/hibernate/engine/spi/SessionFactoryImplementor;
         7: .line 340
            aload 3 /* session */
            invokeinterface org.hibernate.engine.spi.SharedSessionContractImplementor.getTenantIdentifier:()Ljava/lang/String;
         8: .line 336
            invokeinterface org.hibernate.cache.spi.access.CollectionDataAccess.generateCacheKey:(Ljava/lang/Object;Lorg/hibernate/persister/collection/CollectionPersister;Lorg/hibernate/engine/spi/SessionFactoryImplementor;Ljava/lang/String;)Ljava/lang/Object;
            astore 5 /* cacheKey */
        start local 5 // java.lang.Object cacheKey
         9: .line 342
            aload 3 /* session */
            aload 5 /* cacheKey */
            aload 4 /* cache */
            invokestatic org.hibernate.engine.internal.CacheHelper.fromSharedCache:(Lorg/hibernate/engine/spi/SharedSessionContractImplementor;Ljava/lang/Object;Lorg/hibernate/cache/spi/access/CachedDomainDataAccess;)Ljava/io/Serializable;
            ifnull 10
            iconst_1
            ireturn
      StackMap locals: org.hibernate.engine.spi.SharedSessionContractImplementor org.hibernate.cache.spi.access.CollectionDataAccess java.lang.Object
      StackMap stack:
        10: iconst_0
            ireturn
        end local 5 // java.lang.Object cacheKey
        end local 4 // org.hibernate.cache.spi.access.CollectionDataAccess cache
        11: .line 344
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // org.hibernate.engine.spi.SharedSessionContractImplementor session
        end local 2 // org.hibernate.persister.collection.CollectionPersister persister
        end local 1 // java.io.Serializable collectionKey
        end local 0 // org.hibernate.engine.spi.BatchFetchQueue this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   12     0           this  Lorg/hibernate/engine/spi/BatchFetchQueue;
            0   12     1  collectionKey  Ljava/io/Serializable;
            0   12     2      persister  Lorg/hibernate/persister/collection/CollectionPersister;
            1   12     3        session  Lorg/hibernate/engine/spi/SharedSessionContractImplementor;
            3   11     4          cache  Lorg/hibernate/cache/spi/access/CollectionDataAccess;
            9   11     5       cacheKey  Ljava/lang/Object;
    MethodParameters:
               Name  Flags
      collectionKey  
      persister      
}
SourceFile: "BatchFetchQueue.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map