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

  private final java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.util.Map<java.lang.String, org.hibernate.engine.profile.Fetch> fetches;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljava/lang/String;Lorg/hibernate/engine/profile/Fetch;>;

  private boolean containsJoinFetchedCollection;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean containsJoinFetchedBag;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private org.hibernate.engine.profile.Fetch bagJoinFetch;
    descriptor: Lorg/hibernate/engine/profile/Fetch;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 43
            ldc Lorg/hibernate/engine/profile/FetchProfile;
            invokestatic org.hibernate.internal.CoreLogging.messageLogger:(Ljava/lang/Class;)Lorg/hibernate/internal/CoreMessageLogger;
            putstatic org.hibernate.engine.profile.FetchProfile.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.hibernate.engine.profile.FetchProfile this
        start local 1 // java.lang.String name
         0: .line 57
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.hibernate.engine.profile.FetchProfile.fetches:Ljava/util/Map;
         2: .line 58
            aload 0 /* this */
            aload 1 /* name */
            putfield org.hibernate.engine.profile.FetchProfile.name:Ljava/lang/String;
         3: .line 59
            return
        end local 1 // java.lang.String name
        end local 0 // org.hibernate.engine.profile.FetchProfile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/hibernate/engine/profile/FetchProfile;
            0    4     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public void addFetch(org.hibernate.engine.profile.Association, java.lang.String);
    descriptor: (Lorg/hibernate/engine/profile/Association;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hibernate.engine.profile.FetchProfile this
        start local 1 // org.hibernate.engine.profile.Association association
        start local 2 // java.lang.String fetchStyleName
         0: .line 69
            aload 0 /* this */
            aload 1 /* association */
            aload 2 /* fetchStyleName */
            invokestatic org.hibernate.engine.profile.Fetch$Style.parse:(Ljava/lang/String;)Lorg/hibernate/engine/profile/Fetch$Style;
            invokevirtual org.hibernate.engine.profile.FetchProfile.addFetch:(Lorg/hibernate/engine/profile/Association;Lorg/hibernate/engine/profile/Fetch$Style;)V
         1: .line 70
            return
        end local 2 // java.lang.String fetchStyleName
        end local 1 // org.hibernate.engine.profile.Association association
        end local 0 // org.hibernate.engine.profile.FetchProfile this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/hibernate/engine/profile/FetchProfile;
            0    2     1     association  Lorg/hibernate/engine/profile/Association;
            0    2     2  fetchStyleName  Ljava/lang/String;
    MethodParameters:
                Name  Flags
      association     
      fetchStyleName  

  public void addFetch(org.hibernate.engine.profile.Association, org.hibernate.engine.profile.Fetch$Style);
    descriptor: (Lorg/hibernate/engine/profile/Association;Lorg/hibernate/engine/profile/Fetch$Style;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.hibernate.engine.profile.FetchProfile this
        start local 1 // org.hibernate.engine.profile.Association association
        start local 2 // org.hibernate.engine.profile.Fetch$Style style
         0: .line 79
            aload 0 /* this */
            new org.hibernate.engine.profile.Fetch
            dup
            aload 1 /* association */
            aload 2 /* style */
            invokespecial org.hibernate.engine.profile.Fetch.<init>:(Lorg/hibernate/engine/profile/Association;Lorg/hibernate/engine/profile/Fetch$Style;)V
            invokevirtual org.hibernate.engine.profile.FetchProfile.addFetch:(Lorg/hibernate/engine/profile/Fetch;)V
         1: .line 80
            return
        end local 2 // org.hibernate.engine.profile.Fetch$Style style
        end local 1 // org.hibernate.engine.profile.Association association
        end local 0 // org.hibernate.engine.profile.FetchProfile this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/hibernate/engine/profile/FetchProfile;
            0    2     1  association  Lorg/hibernate/engine/profile/Association;
            0    2     2        style  Lorg/hibernate/engine/profile/Fetch$Style;
    MethodParameters:
             Name  Flags
      association  
      style        

  public void addFetch(org.hibernate.engine.profile.Fetch);
    descriptor: (Lorg/hibernate/engine/profile/Fetch;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.hibernate.engine.profile.FetchProfile this
        start local 1 // org.hibernate.engine.profile.Fetch fetch
         0: .line 88
            aload 1 /* fetch */
            invokevirtual org.hibernate.engine.profile.Fetch.getAssociation:()Lorg/hibernate/engine/profile/Association;
            invokevirtual org.hibernate.engine.profile.Association.getRole:()Ljava/lang/String;
            astore 2 /* fetchAssociactionRole */
        start local 2 // java.lang.String fetchAssociactionRole
         1: .line 89
            aload 1 /* fetch */
            invokevirtual org.hibernate.engine.profile.Fetch.getAssociation:()Lorg/hibernate/engine/profile/Association;
            invokevirtual org.hibernate.engine.profile.Association.getOwner:()Lorg/hibernate/persister/entity/EntityPersister;
            aload 1 /* fetch */
            invokevirtual org.hibernate.engine.profile.Fetch.getAssociation:()Lorg/hibernate/engine/profile/Association;
            invokevirtual org.hibernate.engine.profile.Association.getAssociationPath:()Ljava/lang/String;
            invokeinterface org.hibernate.persister.entity.EntityPersister.getPropertyType:(Ljava/lang/String;)Lorg/hibernate/type/Type;
            astore 3 /* associationType */
        start local 3 // org.hibernate.type.Type associationType
         2: .line 90
            aload 3 /* associationType */
            invokeinterface org.hibernate.type.Type.isCollectionType:()Z
            ifeq 15
         3: .line 91
            getstatic org.hibernate.engine.profile.FetchProfile.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            ldc "Handling request to add collection fetch [{0}]"
            aload 2 /* fetchAssociactionRole */
            invokeinterface org.hibernate.internal.CoreMessageLogger.tracev:(Ljava/lang/String;Ljava/lang/Object;)V
         4: .line 95
            getstatic org.hibernate.engine.profile.Fetch$Style.JOIN:Lorg/hibernate/engine/profile/Fetch$Style;
            aload 1 /* fetch */
            invokevirtual org.hibernate.engine.profile.Fetch.getStyle:()Lorg/hibernate/engine/profile/Fetch$Style;
            if_acmpne 15
         5: .line 98
            ldc Lorg/hibernate/type/BagType;
            aload 3 /* associationType */
            invokevirtual java.lang.Class.isInstance:(Ljava/lang/Object;)Z
            ifeq 9
         6: .line 99
            aload 0 /* this */
            getfield org.hibernate.engine.profile.FetchProfile.containsJoinFetchedCollection:Z
            ifeq 9
         7: .line 100
            getstatic org.hibernate.engine.profile.FetchProfile.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            aload 2 /* fetchAssociactionRole */
            invokeinterface org.hibernate.internal.CoreMessageLogger.containsJoinFetchedCollection:(Ljava/lang/String;)V
         8: .line 102
            return
         9: .line 109
      StackMap locals: java.lang.String org.hibernate.type.Type
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.profile.FetchProfile.containsJoinFetchedBag:Z
            ifeq 14
        10: .line 111
            aload 0 /* this */
            getfield org.hibernate.engine.profile.FetchProfile.fetches:Ljava/util/Map;
            aload 0 /* this */
            getfield org.hibernate.engine.profile.FetchProfile.bagJoinFetch:Lorg/hibernate/engine/profile/Fetch;
            invokevirtual org.hibernate.engine.profile.Fetch.getAssociation:()Lorg/hibernate/engine/profile/Association;
            invokevirtual org.hibernate.engine.profile.Association.getRole:()Ljava/lang/String;
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            aload 0 /* this */
            getfield org.hibernate.engine.profile.FetchProfile.bagJoinFetch:Lorg/hibernate/engine/profile/Fetch;
            if_acmpeq 12
        11: .line 112
            getstatic org.hibernate.engine.profile.FetchProfile.LOG:Lorg/hibernate/internal/CoreMessageLogger;
            invokeinterface org.hibernate.internal.CoreMessageLogger.unableToRemoveBagJoinFetch:()V
        12: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.hibernate.engine.profile.FetchProfile.bagJoinFetch:Lorg/hibernate/engine/profile/Fetch;
        13: .line 115
            aload 0 /* this */
            iconst_0
            putfield org.hibernate.engine.profile.FetchProfile.containsJoinFetchedBag:Z
        14: .line 118
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.hibernate.engine.profile.FetchProfile.containsJoinFetchedCollection:Z
        15: .line 121
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.profile.FetchProfile.fetches:Ljava/util/Map;
            aload 2 /* fetchAssociactionRole */
            aload 1 /* fetch */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        16: .line 122
            return
        end local 3 // org.hibernate.type.Type associationType
        end local 2 // java.lang.String fetchAssociactionRole
        end local 1 // org.hibernate.engine.profile.Fetch fetch
        end local 0 // org.hibernate.engine.profile.FetchProfile this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   17     0                   this  Lorg/hibernate/engine/profile/FetchProfile;
            0   17     1                  fetch  Lorg/hibernate/engine/profile/Fetch;
            1   17     2  fetchAssociactionRole  Ljava/lang/String;
            2   17     3        associationType  Lorg/hibernate/type/Type;
    MethodParameters:
       Name  Flags
      fetch  final

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.profile.FetchProfile this
         0: .line 130
            aload 0 /* this */
            getfield org.hibernate.engine.profile.FetchProfile.name:Ljava/lang/String;
            areturn
        end local 0 // org.hibernate.engine.profile.FetchProfile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/profile/FetchProfile;

  public java.util.Map<java.lang.String, org.hibernate.engine.profile.Fetch> getFetches();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.profile.FetchProfile this
         0: .line 140
            aload 0 /* this */
            getfield org.hibernate.engine.profile.FetchProfile.fetches:Ljava/util/Map;
            areturn
        end local 0 // org.hibernate.engine.profile.FetchProfile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/profile/FetchProfile;
    Signature: ()Ljava/util/Map<Ljava/lang/String;Lorg/hibernate/engine/profile/Fetch;>;

  public org.hibernate.engine.profile.Fetch getFetchByRole(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/hibernate/engine/profile/Fetch;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.profile.FetchProfile this
        start local 1 // java.lang.String role
         0: .line 151
            aload 0 /* this */
            getfield org.hibernate.engine.profile.FetchProfile.fetches:Ljava/util/Map;
            aload 1 /* role */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.hibernate.engine.profile.Fetch
            areturn
        end local 1 // java.lang.String role
        end local 0 // org.hibernate.engine.profile.FetchProfile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/profile/FetchProfile;
            0    1     1  role  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      role  

  public boolean isContainsJoinFetchedCollection();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.profile.FetchProfile this
         0: .line 162
            aload 0 /* this */
            getfield org.hibernate.engine.profile.FetchProfile.containsJoinFetchedCollection:Z
            ireturn
        end local 0 // org.hibernate.engine.profile.FetchProfile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/profile/FetchProfile;

  public boolean isContainsJoinFetchedBag();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.profile.FetchProfile this
         0: .line 173
            aload 0 /* this */
            getfield org.hibernate.engine.profile.FetchProfile.containsJoinFetchedBag:Z
            ireturn
        end local 0 // org.hibernate.engine.profile.FetchProfile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/profile/FetchProfile;
}
SourceFile: "FetchProfile.java"
InnerClasses:
  public final Style = org.hibernate.engine.profile.Fetch$Style of org.hibernate.engine.profile.Fetch