class org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator<K, V> extends org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceBaseIterator<K, V> implements org.apache.commons.collections4.MapIterator<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator
  super_class: org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceBaseIterator
{
  protected void <init>(org.apache.commons.collections4.map.AbstractReferenceMap<K, V>);
    descriptor: (Lorg/apache/commons/collections4/map/AbstractReferenceMap;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator this
        start local 1 // org.apache.commons.collections4.map.AbstractReferenceMap parent
         0: .line 932
            aload 0 /* this */
            aload 1 /* parent */
            invokespecial org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceBaseIterator.<init>:(Lorg/apache/commons/collections4/map/AbstractReferenceMap;)V
         1: .line 933
            return
        end local 1 // org.apache.commons.collections4.map.AbstractReferenceMap parent
        end local 0 // org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/commons/collections4/map/AbstractReferenceMap$ReferenceMapIterator<TK;TV;>;
            0    2     1  parent  Lorg/apache/commons/collections4/map/AbstractReferenceMap<TK;TV;>;
    Signature: (Lorg/apache/commons/collections4/map/AbstractReferenceMap<TK;TV;>;)V
    MethodParameters:
        Name  Flags
      parent  final

  public K next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator this
         0: .line 937
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator.nextEntry:()Lorg/apache/commons/collections4/map/AbstractReferenceMap$ReferenceEntry;
            invokevirtual org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceEntry.getKey:()Ljava/lang/Object;
            areturn
        end local 0 // org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/map/AbstractReferenceMap$ReferenceMapIterator<TK;TV;>;
    Signature: ()TK;

  public K getKey();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator this
         0: .line 942
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator.currentEntry:()Lorg/apache/commons/collections4/map/AbstractReferenceMap$ReferenceEntry;
            astore 1 /* current */
        start local 1 // org.apache.commons.collections4.map.AbstractHashedMap$HashEntry current
         1: .line 943
            aload 1 /* current */
            ifnonnull 3
         2: .line 944
            new java.lang.IllegalStateException
            dup
            ldc "getKey() can only be called after next() and before remove()"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 946
      StackMap locals: org.apache.commons.collections4.map.AbstractHashedMap$HashEntry
      StackMap stack:
            aload 1 /* current */
            invokevirtual org.apache.commons.collections4.map.AbstractHashedMap$HashEntry.getKey:()Ljava/lang/Object;
            areturn
        end local 1 // org.apache.commons.collections4.map.AbstractHashedMap$HashEntry current
        end local 0 // org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/apache/commons/collections4/map/AbstractReferenceMap$ReferenceMapIterator<TK;TV;>;
            1    4     1  current  Lorg/apache/commons/collections4/map/AbstractHashedMap$HashEntry<TK;TV;>;
    Signature: ()TK;

  public V getValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator this
         0: .line 951
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator.currentEntry:()Lorg/apache/commons/collections4/map/AbstractReferenceMap$ReferenceEntry;
            astore 1 /* current */
        start local 1 // org.apache.commons.collections4.map.AbstractHashedMap$HashEntry current
         1: .line 952
            aload 1 /* current */
            ifnonnull 3
         2: .line 953
            new java.lang.IllegalStateException
            dup
            ldc "getValue() can only be called after next() and before remove()"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 955
      StackMap locals: org.apache.commons.collections4.map.AbstractHashedMap$HashEntry
      StackMap stack:
            aload 1 /* current */
            invokevirtual org.apache.commons.collections4.map.AbstractHashedMap$HashEntry.getValue:()Ljava/lang/Object;
            areturn
        end local 1 // org.apache.commons.collections4.map.AbstractHashedMap$HashEntry current
        end local 0 // org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/apache/commons/collections4/map/AbstractReferenceMap$ReferenceMapIterator<TK;TV;>;
            1    4     1  current  Lorg/apache/commons/collections4/map/AbstractHashedMap$HashEntry<TK;TV;>;
    Signature: ()TV;

  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.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator this
        start local 1 // java.lang.Object value
         0: .line 960
            aload 0 /* this */
            invokevirtual org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator.currentEntry:()Lorg/apache/commons/collections4/map/AbstractReferenceMap$ReferenceEntry;
            astore 2 /* current */
        start local 2 // org.apache.commons.collections4.map.AbstractHashedMap$HashEntry current
         1: .line 961
            aload 2 /* current */
            ifnonnull 3
         2: .line 962
            new java.lang.IllegalStateException
            dup
            ldc "setValue() can only be called after next() and before remove()"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 964
      StackMap locals: org.apache.commons.collections4.map.AbstractHashedMap$HashEntry
      StackMap stack:
            aload 2 /* current */
            aload 1 /* value */
            invokevirtual org.apache.commons.collections4.map.AbstractHashedMap$HashEntry.setValue:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // org.apache.commons.collections4.map.AbstractHashedMap$HashEntry current
        end local 1 // java.lang.Object value
        end local 0 // org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/apache/commons/collections4/map/AbstractReferenceMap$ReferenceMapIterator<TK;TV;>;
            0    4     1    value  TV;
            1    4     2  current  Lorg/apache/commons/collections4/map/AbstractHashedMap$HashEntry<TK;TV;>;
    Signature: (TV;)TV;
    MethodParameters:
       Name  Flags
      value  final
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Lorg/apache/commons/collections4/map/AbstractReferenceMap$ReferenceBaseIterator<TK;TV;>;Lorg/apache/commons/collections4/MapIterator<TK;TV;>;
SourceFile: "AbstractReferenceMap.java"
NestHost: org.apache.commons.collections4.map.AbstractReferenceMap
InnerClasses:
  protected HashEntry = org.apache.commons.collections4.map.AbstractHashedMap$HashEntry of org.apache.commons.collections4.map.AbstractHashedMap
  ReferenceBaseIterator = org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceBaseIterator of org.apache.commons.collections4.map.AbstractReferenceMap
  protected ReferenceEntry = org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceEntry of org.apache.commons.collections4.map.AbstractReferenceMap
  ReferenceMapIterator = org.apache.commons.collections4.map.AbstractReferenceMap$ReferenceMapIterator of org.apache.commons.collections4.map.AbstractReferenceMap