final class org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry implements java.util.Map$Entry<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry
  super_class: java.lang.Object
{
  private final K key;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TK;

  private V value;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Signature: TV;

  final org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet this$1;
    descriptor: Lorg/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap$EntrySet;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  private void <init>(K, );
    descriptor: (Lorg/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap$EntrySet;Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
        start local 2 // java.lang.Object key
        start local 3 // java.lang.Object value
         0: .line 1217
            aload 0 /* this */
            aload 1
            putfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.this$1:Lorg/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap$EntrySet;
         1: .line 1216
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         2: .line 1218
            aload 0 /* this */
            aload 2 /* key */
            putfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.key:Ljava/lang/Object;
         3: .line 1219
            aload 0 /* this */
            aload 3 /* value */
            putfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.value:Ljava/lang/Object;
         4: .line 1220
            return
        end local 3 // java.lang.Object value
        end local 2 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap$EntrySet$InternalEntry;
            0    5     2    key  TK;
            0    5     3  value  TV;
    Signature: (TK;TV;)V
    MethodParameters:
        Name  Flags
      this$0  final
      key     
      value   

  public K getKey();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
         0: .line 1225
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.key:Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap$EntrySet$InternalEntry;
    Signature: ()TK;

  public V getValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
         0: .line 1231
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.value:Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap$EntrySet$InternalEntry;
    Signature: ()TV;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
        start local 1 // java.lang.Object obj
         0: .line 1237
            aload 1 /* obj */
            instanceof java.util.Map$Entry
            ifeq 8
         1: .line 1239
            aload 1 /* obj */
            checkcast java.util.Map$Entry
            astore 2 /* other */
        start local 2 // java.util.Map$Entry other
         2: .line 1240
            aload 2 /* other */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            astore 3 /* otherKey */
        start local 3 // java.lang.Object otherKey
         3: .line 1241
            aload 2 /* other */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            astore 4 /* otherValue */
        start local 4 // java.lang.Object otherValue
         4: .line 1242
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.key:Ljava/lang/Object;
            aload 3 /* otherKey */
            invokestatic org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 7
         5: .line 1243
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.value:Ljava/lang/Object;
            aload 4 /* otherValue */
            invokestatic org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 7
         6: .line 1242
            iconst_1
            ireturn
      StackMap locals: java.util.Map$Entry java.lang.Object java.lang.Object
      StackMap stack:
         7: iconst_0
            ireturn
        end local 4 // java.lang.Object otherValue
        end local 3 // java.lang.Object otherKey
        end local 2 // java.util.Map$Entry other
         8: .line 1245
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lorg/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap$EntrySet$InternalEntry;
            0    9     1         obj  Ljava/lang/Object;
            2    8     2       other  Ljava/util/Map$Entry<**>;
            3    8     3    otherKey  Ljava/lang/Object;
            4    8     4  otherValue  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
         0: .line 1251
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.key:Ljava/lang/Object;
            ifnonnull 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.key:Ljava/lang/Object;
            invokevirtual java.lang.Object.hashCode:()I
         2: .line 1252
      StackMap locals:
      StackMap stack: int
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.value:Ljava/lang/Object;
            ifnonnull 3
            iconst_0
            goto 4
      StackMap locals:
      StackMap stack: int
         3: aload 0 /* this */
            getfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.value:Ljava/lang/Object;
            invokevirtual java.lang.Object.hashCode:()I
         4: .line 1251
      StackMap locals: org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry
      StackMap stack: int int
            ixor
            ireturn
        end local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap$EntrySet$InternalEntry;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
         0: .line 1258
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.key:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.value:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap$EntrySet$InternalEntry;

  public V setValue();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
        start local 1 // java.lang.Object value
         0: .line 1264
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.this$1:Lorg/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap$EntrySet;
            invokestatic org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet.access$1:(Lorg/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap$EntrySet;)Lorg/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.key:Ljava/lang/Object;
            aload 1 /* value */
            invokevirtual org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* result */
        start local 2 // java.lang.Object result
         1: .line 1265
            aload 0 /* this */
            aload 1 /* value */
            putfield org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry.value:Ljava/lang/Object;
         2: .line 1266
            aload 2 /* result */
            areturn
        end local 2 // java.lang.Object result
        end local 1 // java.lang.Object value
        end local 0 // org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/bimap/mutable/AbstractMutableBiMap$EntrySet$InternalEntry;
            0    3     1   value  TV;
            1    3     2  result  TV;
    Signature: (TV;)TV;
    MethodParameters:
       Name  Flags
      value  
}
Signature: Ljava/lang/Object;Ljava/util/Map$Entry<TK;TV;>;
SourceFile: "AbstractMutableBiMap.java"
NestHost: org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
  private EntrySet = org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet of org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap
  private final InternalEntry = org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet$InternalEntry of org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap$EntrySet