class org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry
  super_class: java.lang.Object
{
  final K key;
    descriptor: Ljava/lang/Object;
    flags: (0x0010) ACC_FINAL
    Signature: TK;

  final int hash;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  volatile V value;
    descriptor: Ljava/lang/Object;
    flags: (0x0040) ACC_VOLATILE
    Signature: TV;

  final org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry<K, V> next;
    descriptor: Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry<TK;TV;>;

  void <init>(K, int, org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry<K, V>, );
    descriptor: (Ljava/lang/Object;ILorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry;Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry this
        start local 1 // java.lang.Object key
        start local 2 // int hash
        start local 3 // org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry next
        start local 4 // java.lang.Object value
         0: .line 241
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 242
            aload 0 /* this */
            aload 1 /* key */
            putfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry.key:Ljava/lang/Object;
         2: .line 243
            aload 0 /* this */
            iload 2 /* hash */
            putfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry.hash:I
         3: .line 244
            aload 0 /* this */
            aload 3 /* next */
            putfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry.next:Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry;
         4: .line 245
            aload 0 /* this */
            aload 4 /* value */
            putfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry.value:Ljava/lang/Object;
         5: .line 246
            return
        end local 4 // java.lang.Object value
        end local 3 // org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry next
        end local 2 // int hash
        end local 1 // java.lang.Object key
        end local 0 // org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry<TK;TV;>;
            0    6     1    key  TK;
            0    6     2   hash  I
            0    6     3   next  Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry<TK;TV;>;
            0    6     4  value  TV;
    Signature: (TK;ILorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry<TK;TV;>;TV;)V
    MethodParameters:
       Name  Flags
      key    
      hash   
      next   
      value  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry this
         0: .line 250
            bipush 17
            istore 1 /* result */
        start local 1 // int result
         1: .line 251
            iload 1 /* result */
            bipush 31
            imul
            aload 0 /* this */
            getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry.hash:I
            iadd
            istore 1 /* result */
         2: .line 252
            iload 1 /* result */
            bipush 31
            imul
            aload 0 /* this */
            getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry.key:Ljava/lang/Object;
            invokevirtual java.lang.Object.hashCode:()I
            iadd
            istore 1 /* result */
         3: .line 253
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry<TK;TV;>;
            1    4     1  result  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry this
        start local 1 // java.lang.Object o
         0: .line 259
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 2
         1: .line 260
            iconst_1
            ireturn
         2: .line 262
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnonnull 4
         3: .line 263
            iconst_0
            ireturn
         4: .line 265
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry
            astore 2 /* other */
        start local 2 // org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry other
         5: .line 266
            aload 0 /* this */
            getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry.hash:I
            aload 2 /* other */
            getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry.hash:I
            if_icmpne 6
            aload 0 /* this */
            getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry.key:Ljava/lang/Object;
            aload 2 /* other */
            getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry.key:Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 6
            iconst_1
            ireturn
      StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry
      StackMap stack:
         6: iconst_0
            ireturn
        end local 2 // org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry other
        end local 1 // java.lang.Object o
        end local 0 // org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry<TK;TV;>;
            0    7     1      o  Ljava/lang/Object;
            5    7     2  other  Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry<**>;
    MethodParameters:
      Name  Flags
      o     

  static <K, V> org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry<K, V>[] newArray(int);
    descriptor: (I)[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // int i
         0: .line 271
            iload 0 /* i */
            anewarray org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry
            areturn
        end local 0 // int i
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     i  I
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(I)[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry<TK;TV;>;
    MethodParameters:
      Name  Flags
      i     
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "BoundedConcurrentHashMap.java"
NestHost: org.hibernate.internal.util.collections.BoundedConcurrentHashMap
InnerClasses:
  private HashEntry = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry of org.hibernate.internal.util.collections.BoundedConcurrentHashMap