class com.microsoft.azure.PagedList$ListItr implements java.util.ListIterator<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.microsoft.azure.PagedList$ListItr
  super_class: java.lang.Object
{
  private int nextIndex;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int lastRetIndex;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  final com.microsoft.azure.PagedList this$0;
    descriptor: Lcom/microsoft/azure/PagedList;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(com.microsoft.azure.PagedList, int);
    descriptor: (Lcom/microsoft/azure/PagedList;I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.microsoft.azure.PagedList$ListItr this
        start local 2 // int index
         0: .line 157
            aload 0 /* this */
            aload 1
            putfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 150
            aload 0 /* this */
            iconst_m1
            putfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
         2: .line 158
            aload 0 /* this */
            iload 2 /* index */
            putfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
         3: .line 159
            return
        end local 2 // int index
        end local 0 // com.microsoft.azure.PagedList$ListItr this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/microsoft/azure/PagedList$ListItr;
            0    4     2  index  I
    MethodParameters:
        Name  Flags
      this$0  final
      index   

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList$ListItr this
         0: .line 163
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmpne 1
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
            invokevirtual com.microsoft.azure.PagedList.hasNextPage:()Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // com.microsoft.azure.PagedList$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/microsoft/azure/PagedList$ListItr;

  public E next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.microsoft.azure.PagedList$ListItr this
         0: .line 168
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmplt 5
         1: .line 169
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
            invokevirtual com.microsoft.azure.PagedList.hasNextPage:()Z
            ifne 3
         2: .line 170
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         3: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
            invokevirtual com.microsoft.azure.PagedList.loadNextPage:()V
         4: .line 175
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList$ListItr.next:()Ljava/lang/Object;
            areturn
         5: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            astore 1 /* nextItem */
        start local 1 // java.lang.Object nextItem
         6: .line 179
            aload 0 /* this */
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
            putfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
         7: .line 180
            aload 0 /* this */
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
            iconst_1
            iadd
            putfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
         8: .line 181
            aload 1 /* nextItem */
         9: areturn
        end local 1 // java.lang.Object nextItem
        10: .line 182
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
            pop
        11: .line 185
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
        end local 0 // com.microsoft.azure.PagedList$ListItr this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lcom/microsoft/azure/PagedList$ListItr;
            6   10     1  nextItem  TE;
      Exception table:
        from    to  target  type
           5     9      10  Class java.lang.IndexOutOfBoundsException
    Signature: ()TE;

  public void remove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList$ListItr this
         0: .line 192
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
            ifge 2
         1: .line 193
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         2: .line 196
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            pop
         3: .line 197
            aload 0 /* this */
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
            putfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
         4: .line 198
            aload 0 /* this */
            iconst_m1
            putfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
         5: .line 199
            goto 8
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
         6: pop
         7: .line 200
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
         8: .line 203
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.microsoft.azure.PagedList$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/microsoft/azure/PagedList$ListItr;
      Exception table:
        from    to  target  type
           2     5       6  Class java.lang.IndexOutOfBoundsException

  public boolean hasPrevious();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList$ListItr this
         0: .line 207
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.microsoft.azure.PagedList$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/microsoft/azure/PagedList$ListItr;

  public E previous();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.microsoft.azure.PagedList$ListItr this
         0: .line 212
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
            iconst_1
            isub
            istore 1 /* i */
        start local 1 // int i
         1: .line 213
            iload 1 /* i */
            ifge 3
         2: .line 214
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         3: .line 215
      StackMap locals: int
      StackMap stack:
            iload 1 /* i */
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmplt 5
         4: .line 216
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
         5: .line 219
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* i */
            putfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
         6: .line 220
            aload 0 /* this */
            iload 1 /* i */
            putfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
         7: .line 221
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
         8: areturn
         9: .line 222
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
            pop
        10: .line 223
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
        end local 1 // int i
        end local 0 // com.microsoft.azure.PagedList$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/microsoft/azure/PagedList$ListItr;
            1   11     1     i  I
      Exception table:
        from    to  target  type
           5     8       9  Class java.lang.IndexOutOfBoundsException
    Signature: ()TE;

  public int nextIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList$ListItr this
         0: .line 230
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
            ireturn
        end local 0 // com.microsoft.azure.PagedList$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PagedList$ListItr;

  public int previousIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList$ListItr this
         0: .line 235
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
            iconst_1
            isub
            ireturn
        end local 0 // com.microsoft.azure.PagedList$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PagedList$ListItr;

  public void set();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PagedList$ListItr this
        start local 1 // java.lang.Object e
         0: .line 240
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
            ifge 2
         1: .line 241
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         2: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
            aload 1 /* e */
            invokeinterface java.util.List.set:(ILjava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 245
            goto 6
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
         4: pop
         5: .line 246
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
         6: .line 249
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object e
        end local 0 // com.microsoft.azure.PagedList$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/microsoft/azure/PagedList$ListItr;
            0    7     1     e  TE;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.IndexOutOfBoundsException
    Signature: (TE;)V
    MethodParameters:
      Name  Flags
      e     

  public void add();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PagedList$ListItr this
        start local 1 // java.lang.Object e
         0: .line 254
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
            aload 1 /* e */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         1: .line 255
            aload 0 /* this */
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
            iconst_1
            iadd
            putfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
         2: .line 256
            aload 0 /* this */
            iconst_m1
            putfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
         3: .line 257
            goto 6
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
         4: pop
         5: .line 258
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
         6: .line 260
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object e
        end local 0 // com.microsoft.azure.PagedList$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/microsoft/azure/PagedList$ListItr;
            0    7     1     e  TE;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.IndexOutOfBoundsException
    Signature: (TE;)V
    MethodParameters:
      Name  Flags
      e     
}
Signature: Ljava/lang/Object;Ljava/util/ListIterator<TE;>;
SourceFile: "PagedList.java"
NestHost: com.microsoft.azure.PagedList
InnerClasses:
  private ListItr = com.microsoft.azure.PagedList$ListItr of com.microsoft.azure.PagedList