class sun.misc.SoftCache$Entry implements java.util.Map$Entry
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.misc.SoftCache$Entry
  super_class: java.lang.Object
{
  private java.util.Map$Entry ent;
    descriptor: Ljava/util/Map$Entry;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Object value;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  final sun.misc.SoftCache this$0;
    descriptor: Lsun/misc/SoftCache;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(sun.misc.SoftCache, java.util.Map$Entry, java.lang.Object);
    descriptor: (Lsun/misc/SoftCache;Ljava/util/Map$Entry;Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // sun.misc.SoftCache$Entry this
        start local 2 // java.util.Map$Entry ent
        start local 3 // java.lang.Object value
         0: .line 357
            aload 0 /* this */
            aload 1
            putfield sun.misc.SoftCache$Entry.this$0:Lsun/misc/SoftCache;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 358
            aload 0 /* this */
            aload 2 /* ent */
            putfield sun.misc.SoftCache$Entry.ent:Ljava/util/Map$Entry;
         2: .line 359
            aload 0 /* this */
            aload 3 /* value */
            putfield sun.misc.SoftCache$Entry.value:Ljava/lang/Object;
         3: .line 360
            return
        end local 3 // java.lang.Object value
        end local 2 // java.util.Map$Entry ent
        end local 0 // sun.misc.SoftCache$Entry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/misc/SoftCache$Entry;
            0    4     2    ent  Ljava/util/Map$Entry;
            0    4     3  value  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      this$0  final
      ent     
      value   

  public java.lang.Object getKey();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.misc.SoftCache$Entry this
         0: .line 363
            aload 0 /* this */
            getfield sun.misc.SoftCache$Entry.ent:Ljava/util/Map$Entry;
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            areturn
        end local 0 // sun.misc.SoftCache$Entry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/misc/SoftCache$Entry;

  public java.lang.Object getValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.misc.SoftCache$Entry this
         0: .line 367
            aload 0 /* this */
            getfield sun.misc.SoftCache$Entry.value:Ljava/lang/Object;
            areturn
        end local 0 // sun.misc.SoftCache$Entry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/misc/SoftCache$Entry;

  public java.lang.Object setValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.misc.SoftCache$Entry this
        start local 1 // java.lang.Object value
         0: .line 371
            aload 0 /* this */
            getfield sun.misc.SoftCache$Entry.ent:Ljava/util/Map$Entry;
            aload 0 /* this */
            getfield sun.misc.SoftCache$Entry.ent:Ljava/util/Map$Entry;
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            aload 1 /* value */
            aload 0 /* this */
            getfield sun.misc.SoftCache$Entry.this$0:Lsun/misc/SoftCache;
            getfield sun.misc.SoftCache.queue:Ljava/lang/ref/ReferenceQueue;
            invokestatic sun.misc.SoftCache$ValueCell.create:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)Lsun/misc/SoftCache$ValueCell;
            invokeinterface java.util.Map$Entry.setValue:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object value
        end local 0 // sun.misc.SoftCache$Entry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lsun/misc/SoftCache$Entry;
            0    1     1  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  

  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 // sun.misc.SoftCache$Entry this
        start local 1 // java.lang.Object o
         0: .line 375
            aload 1 /* o */
            instanceof java.util.Map$Entry
            ifne 1
            iconst_0
            ireturn
         1: .line 376
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast java.util.Map$Entry
            astore 2 /* e */
        start local 2 // java.util.Map$Entry e
         2: .line 377
            aload 0 /* this */
            getfield sun.misc.SoftCache$Entry.ent:Ljava/util/Map$Entry;
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            aload 2 /* e */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            invokestatic sun.misc.SoftCache.valEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         3: .line 378
            aload 0 /* this */
            getfield sun.misc.SoftCache$Entry.value:Ljava/lang/Object;
            aload 2 /* e */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokestatic sun.misc.SoftCache.valEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         4: .line 377
            iconst_1
            ireturn
      StackMap locals: java.util.Map$Entry
      StackMap stack:
         5: iconst_0
            ireturn
        end local 2 // java.util.Map$Entry e
        end local 1 // java.lang.Object o
        end local 0 // sun.misc.SoftCache$Entry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/misc/SoftCache$Entry;
            0    6     1     o  Ljava/lang/Object;
            2    6     2     e  Ljava/util/Map$Entry;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.misc.SoftCache$Entry this
         0: .line 383
            aload 0 /* this */
            invokevirtual sun.misc.SoftCache$Entry.getKey:()Ljava/lang/Object;
            dup
            astore 1 /* k */
        start local 1 // java.lang.Object k
         1: ifnonnull 2
            iconst_0
            goto 3
      StackMap locals: java.lang.Object
      StackMap stack:
         2: aload 1 /* k */
            invokevirtual java.lang.Object.hashCode:()I
         3: .line 384
      StackMap locals:
      StackMap stack: int
            aload 0 /* this */
            getfield sun.misc.SoftCache$Entry.value:Ljava/lang/Object;
            ifnonnull 4
            iconst_0
            goto 5
      StackMap locals:
      StackMap stack: int
         4: aload 0 /* this */
            getfield sun.misc.SoftCache$Entry.value:Ljava/lang/Object;
            invokevirtual java.lang.Object.hashCode:()I
         5: .line 383
      StackMap locals: sun.misc.SoftCache$Entry java.lang.Object
      StackMap stack: int int
            ixor
            ireturn
        end local 1 // java.lang.Object k
        end local 0 // sun.misc.SoftCache$Entry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/misc/SoftCache$Entry;
            1    6     1     k  Ljava/lang/Object;
}
SourceFile: "SoftCache.java"
NestHost: sun.misc.SoftCache
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
  private Entry = sun.misc.SoftCache$Entry of sun.misc.SoftCache
  private ValueCell = sun.misc.SoftCache$ValueCell of sun.misc.SoftCache