abstract class mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator implements java.util.Iterator<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator
  super_class: java.lang.Object
{
  E cursor;
    descriptor: Lmssql/googlecode/concurrentlinkedhashmap/Linked;
    flags: (0x0000) 
    Signature: TE;

  final mssql.googlecode.concurrentlinkedhashmap.LinkedDeque this$0;
    descriptor: Lmssql/googlecode/concurrentlinkedhashmap/LinkedDeque;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>();
    descriptor: (Lmssql/googlecode/concurrentlinkedhashmap/LinkedDeque;Lmssql/googlecode/concurrentlinkedhashmap/Linked;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator this
        start local 2 // mssql.googlecode.concurrentlinkedhashmap.Linked start
         0: .line 406
            aload 0 /* this */
            aload 1
            putfield mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator.this$0:Lmssql/googlecode/concurrentlinkedhashmap/LinkedDeque;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 407
            aload 0 /* this */
            aload 2 /* start */
            putfield mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator.cursor:Lmssql/googlecode/concurrentlinkedhashmap/Linked;
         2: .line 408
            return
        end local 2 // mssql.googlecode.concurrentlinkedhashmap.Linked start
        end local 0 // mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lmssql/googlecode/concurrentlinkedhashmap/LinkedDeque$AbstractLinkedIterator;
            0    3     2  start  TE;
    Signature: (TE;)V
    MethodParameters:
        Name  Flags
      this$0  final
      start   

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator this
         0: .line 412
            aload 0 /* this */
            getfield mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator.cursor:Lmssql/googlecode/concurrentlinkedhashmap/Linked;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lmssql/googlecode/concurrentlinkedhashmap/LinkedDeque$AbstractLinkedIterator;

  public E next();
    descriptor: ()Lmssql/googlecode/concurrentlinkedhashmap/Linked;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator this
         0: .line 417
            aload 0 /* this */
            invokevirtual mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator.hasNext:()Z
            ifne 2
         1: .line 418
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 420
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator.cursor:Lmssql/googlecode/concurrentlinkedhashmap/Linked;
            astore 1 /* e */
        start local 1 // mssql.googlecode.concurrentlinkedhashmap.Linked e
         3: .line 421
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator.computeNext:()Lmssql/googlecode/concurrentlinkedhashmap/Linked;
            putfield mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator.cursor:Lmssql/googlecode/concurrentlinkedhashmap/Linked;
         4: .line 422
            aload 1 /* e */
            areturn
        end local 1 // mssql.googlecode.concurrentlinkedhashmap.Linked e
        end local 0 // mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lmssql/googlecode/concurrentlinkedhashmap/LinkedDeque$AbstractLinkedIterator;
            3    5     1     e  TE;
    Signature: ()TE;

  public void remove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator this
         0: .line 427
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lmssql/googlecode/concurrentlinkedhashmap/LinkedDeque$AbstractLinkedIterator;

  abstract E computeNext();
    descriptor: ()Lmssql/googlecode/concurrentlinkedhashmap/Linked;
    flags: (0x0400) ACC_ABSTRACT
    Signature: ()TE;

  public java.lang.Object next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator.next:()Lmssql/googlecode/concurrentlinkedhashmap/Linked;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Ljava/util/Iterator<TE;>;
SourceFile: "LinkedDeque.java"
NestHost: mssql.googlecode.concurrentlinkedhashmap.LinkedDeque
InnerClasses:
  abstract AbstractLinkedIterator = mssql.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator of mssql.googlecode.concurrentlinkedhashmap.LinkedDeque