class sun.misc.SoftCache$EntrySet$1 implements java.util.Iterator
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.misc.SoftCache$EntrySet$1
  super_class: java.lang.Object
{
  java.util.Iterator hashIterator;
    descriptor: Ljava/util/Iterator;
    flags: (0x0000) 

  sun.misc.SoftCache$Entry next;
    descriptor: Lsun/misc/SoftCache$Entry;
    flags: (0x0000) 

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

  void <init>(sun.misc.SoftCache$EntrySet);
    descriptor: (Lsun/misc/SoftCache$EntrySet;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.misc.SoftCache$EntrySet$1 this
         0: .line 396
            aload 0 /* this */
            aload 1
            putfield sun.misc.SoftCache$EntrySet$1.this$1:Lsun/misc/SoftCache$EntrySet;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 397
            aload 0 /* this */
            aload 1
            getfield sun.misc.SoftCache$EntrySet.hashEntries:Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            putfield sun.misc.SoftCache$EntrySet$1.hashIterator:Ljava/util/Iterator;
         2: .line 398
            aload 0 /* this */
            aconst_null
            putfield sun.misc.SoftCache$EntrySet$1.next:Lsun/misc/SoftCache$Entry;
         3: .line 396
            return
        end local 0 // sun.misc.SoftCache$EntrySet$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/misc/SoftCache$EntrySet$1;
    MethodParameters:
        Name  Flags
      this$0  final

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // sun.misc.SoftCache$EntrySet$1 this
         0: .line 401
            goto 8
         1: .line 402
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.misc.SoftCache$EntrySet$1.hashIterator:Ljava/util/Iterator;
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 1 /* ent */
        start local 1 // java.util.Map$Entry ent
         2: .line 403
            aload 1 /* ent */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast sun.misc.SoftCache$ValueCell
            astore 2 /* vc */
        start local 2 // sun.misc.SoftCache$ValueCell vc
         3: .line 404
            aconst_null
            astore 3 /* v */
        start local 3 // java.lang.Object v
         4: .line 405
            aload 2 /* vc */
            ifnull 6
            aload 2 /* vc */
            invokevirtual sun.misc.SoftCache$ValueCell.get:()Ljava/lang/Object;
            dup
            astore 3 /* v */
            ifnonnull 6
         5: .line 407
            goto 8
         6: .line 409
      StackMap locals: java.util.Map$Entry sun.misc.SoftCache$ValueCell java.lang.Object
      StackMap stack:
            aload 0 /* this */
            new sun.misc.SoftCache$Entry
            dup
            aload 0 /* this */
            getfield sun.misc.SoftCache$EntrySet$1.this$1:Lsun/misc/SoftCache$EntrySet;
            invokestatic sun.misc.SoftCache$EntrySet.access$0:(Lsun/misc/SoftCache$EntrySet;)Lsun/misc/SoftCache;
            aload 1 /* ent */
            aload 3 /* v */
            invokespecial sun.misc.SoftCache$Entry.<init>:(Lsun/misc/SoftCache;Ljava/util/Map$Entry;Ljava/lang/Object;)V
            putfield sun.misc.SoftCache$EntrySet$1.next:Lsun/misc/SoftCache$Entry;
         7: .line 410
            iconst_1
            ireturn
        end local 3 // java.lang.Object v
        end local 2 // sun.misc.SoftCache$ValueCell vc
        end local 1 // java.util.Map$Entry ent
         8: .line 401
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.misc.SoftCache$EntrySet$1.hashIterator:Ljava/util/Iterator;
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         9: .line 412
            iconst_0
            ireturn
        end local 0 // sun.misc.SoftCache$EntrySet$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lsun/misc/SoftCache$EntrySet$1;
            2    8     1   ent  Ljava/util/Map$Entry;
            3    8     2    vc  Lsun/misc/SoftCache$ValueCell;
            4    8     3     v  Ljava/lang/Object;

  public java.lang.Object next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.misc.SoftCache$EntrySet$1 this
         0: .line 416
            aload 0 /* this */
            getfield sun.misc.SoftCache$EntrySet$1.next:Lsun/misc/SoftCache$Entry;
            ifnonnull 2
            aload 0 /* this */
            invokevirtual sun.misc.SoftCache$EntrySet$1.hasNext:()Z
            ifne 2
         1: .line 417
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 418
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.misc.SoftCache$EntrySet$1.next:Lsun/misc/SoftCache$Entry;
            astore 1 /* e */
        start local 1 // sun.misc.SoftCache$Entry e
         3: .line 419
            aload 0 /* this */
            aconst_null
            putfield sun.misc.SoftCache$EntrySet$1.next:Lsun/misc/SoftCache$Entry;
         4: .line 420
            aload 1 /* e */
            areturn
        end local 1 // sun.misc.SoftCache$Entry e
        end local 0 // sun.misc.SoftCache$EntrySet$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/misc/SoftCache$EntrySet$1;
            3    5     1     e  Lsun/misc/SoftCache$Entry;

  public void remove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.misc.SoftCache$EntrySet$1 this
         0: .line 424
            aload 0 /* this */
            getfield sun.misc.SoftCache$EntrySet$1.hashIterator:Ljava/util/Iterator;
            invokeinterface java.util.Iterator.remove:()V
         1: .line 425
            return
        end local 0 // sun.misc.SoftCache$EntrySet$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/misc/SoftCache$EntrySet$1;
}
SourceFile: "SoftCache.java"
EnclosingMethod: sun.misc.SoftCache$EntrySet.iterator:()Ljava/util/Iterator;
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 EntrySet = sun.misc.SoftCache$EntrySet of sun.misc.SoftCache
  sun.misc.SoftCache$EntrySet$1
  private ValueCell = sun.misc.SoftCache$ValueCell of sun.misc.SoftCache