public abstract class com.microsoft.azure.PagedList<E> implements java.util.List<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.microsoft.azure.PagedList
  super_class: java.lang.Object
{
  private java.util.List<E> items;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<TE;>;

  private com.microsoft.azure.Page<E> currentPage;
    descriptor: Lcom/microsoft/azure/Page;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lcom/microsoft/azure/Page<TE;>;

  private com.microsoft.azure.Page<E> cachedPage;
    descriptor: Lcom/microsoft/azure/Page;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lcom/microsoft/azure/Page<TE;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList this
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield com.microsoft.azure.PagedList.items:Ljava/util/List;
         2: .line 39
            return
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/microsoft/azure/PagedList<TE;>;

  public void <init>(com.microsoft.azure.Page<E>);
    descriptor: (Lcom/microsoft/azure/Page;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // com.microsoft.azure.Page page
         0: .line 47
            aload 0 /* this */
            invokespecial com.microsoft.azure.PagedList.<init>:()V
         1: .line 48
            aload 1 /* page */
            ifnonnull 3
         2: .line 49
            return
         3: .line 51
      StackMap locals: com.microsoft.azure.PagedList com.microsoft.azure.Page
      StackMap stack:
            aload 1 /* page */
            invokeinterface com.microsoft.azure.Page.items:()Ljava/util/List;
            astore 2 /* retrievedItems */
        start local 2 // java.util.List retrievedItems
         4: .line 52
            aload 2 /* retrievedItems */
            ifnull 6
         5: .line 53
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 2 /* retrievedItems */
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         6: .line 55
      StackMap locals: java.util.List
      StackMap stack:
            aload 0 /* this */
            aload 1 /* page */
            putfield com.microsoft.azure.PagedList.currentPage:Lcom/microsoft/azure/Page;
         7: .line 56
            aload 0 /* this */
            aload 1 /* page */
            invokeinterface com.microsoft.azure.Page.nextPageLink:()Ljava/lang/String;
            invokevirtual com.microsoft.azure.PagedList.cachePage:(Ljava/lang/String;)V
         8: .line 57
            return
        end local 2 // java.util.List retrievedItems
        end local 1 // com.microsoft.azure.Page page
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    9     0            this  Lcom/microsoft/azure/PagedList<TE;>;
            0    9     1            page  Lcom/microsoft/azure/Page<TE;>;
            4    9     2  retrievedItems  Ljava/util/List<TE;>;
    Signature: (Lcom/microsoft/azure/Page<TE;>;)V
    MethodParameters:
      Name  Flags
      page  

  private void cachePage(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // java.lang.String nextPageLink
         0: .line 61
            goto 7
         1: .line 62
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* nextPageLink */
            invokevirtual com.microsoft.azure.PagedList.nextPage:(Ljava/lang/String;)Lcom/microsoft/azure/Page;
            putfield com.microsoft.azure.PagedList.cachedPage:Lcom/microsoft/azure/Page;
         2: .line 63
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.cachedPage:Lcom/microsoft/azure/Page;
            ifnonnull 4
         3: .line 64
            goto 11
         4: .line 66
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.cachedPage:Lcom/microsoft/azure/Page;
            invokeinterface com.microsoft.azure.Page.nextPageLink:()Ljava/lang/String;
            astore 1 /* nextPageLink */
         5: .line 67
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.hasNextPage:()Z
            ifeq 7
         6: .line 69
            goto 11
         7: .line 61
      StackMap locals:
      StackMap stack:
            aload 1 /* nextPageLink */
            ifnull 11
            aload 1 /* nextPageLink */
            ldc ""
            if_acmpne 1
         8: .line 72
            goto 11
      StackMap locals:
      StackMap stack: java.io.IOException
         9: astore 2 /* ex */
        start local 2 // java.io.IOException ex
        10: .line 73
            new java.lang.RuntimeException
            dup
            aload 2 /* ex */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException ex
        11: .line 75
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String nextPageLink
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lcom/microsoft/azure/PagedList<TE;>;
            0   12     1  nextPageLink  Ljava/lang/String;
           10   11     2            ex  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     8       9  Class java.io.IOException
    MethodParameters:
              Name  Flags
      nextPageLink  

  public abstract com.microsoft.azure.Page<E> nextPage(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/microsoft/azure/Page;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws com.microsoft.rest.RestException, java.io.IOException
    Signature: (Ljava/lang/String;)Lcom/microsoft/azure/Page<TE;>;
    MethodParameters:
              Name  Flags
      nextPageLink  

  public boolean hasNextPage();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList this
         0: .line 93
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.cachedPage:Lcom/microsoft/azure/Page;
            ifnull 1
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.cachedPage:Lcom/microsoft/azure/Page;
            invokeinterface com.microsoft.azure.Page.items:()Ljava/util/List;
            ifnull 1
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.cachedPage:Lcom/microsoft/azure/Page;
            invokeinterface com.microsoft.azure.Page.items:()Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/microsoft/azure/PagedList<TE;>;

  public void loadNextPage();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList this
         0: .line 101
            aload 0 /* this */
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.cachedPage:Lcom/microsoft/azure/Page;
            putfield com.microsoft.azure.PagedList.currentPage:Lcom/microsoft/azure/Page;
         1: .line 102
            aload 0 /* this */
            aconst_null
            putfield com.microsoft.azure.PagedList.cachedPage:Lcom/microsoft/azure/Page;
         2: .line 103
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.currentPage:Lcom/microsoft/azure/Page;
            invokeinterface com.microsoft.azure.Page.items:()Ljava/util/List;
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         3: .line 104
            aload 0 /* this */
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.currentPage:Lcom/microsoft/azure/Page;
            invokeinterface com.microsoft.azure.Page.nextPageLink:()Ljava/lang/String;
            invokevirtual com.microsoft.azure.PagedList.cachePage:(Ljava/lang/String;)V
         4: .line 105
            return
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/microsoft/azure/PagedList<TE;>;

  public void loadAll();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList this
         0: .line 111
            goto 2
         1: .line 112
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.loadNextPage:()V
         2: .line 111
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.hasNextPage:()Z
            ifne 1
         3: .line 114
            return
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/microsoft/azure/PagedList<TE;>;

  public com.microsoft.azure.Page<E> currentPage();
    descriptor: ()Lcom/microsoft/azure/Page;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList this
         0: .line 122
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.currentPage:Lcom/microsoft/azure/Page;
            areturn
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PagedList<TE;>;
    Signature: ()Lcom/microsoft/azure/Page<TE;>;

  protected void setCurrentPage(com.microsoft.azure.Page<E>);
    descriptor: (Lcom/microsoft/azure/Page;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // com.microsoft.azure.Page currentPage
         0: .line 131
            aload 0 /* this */
            aload 1 /* currentPage */
            putfield com.microsoft.azure.PagedList.currentPage:Lcom/microsoft/azure/Page;
         1: .line 132
            aload 1 /* currentPage */
            invokeinterface com.microsoft.azure.Page.items:()Ljava/util/List;
            astore 2 /* retrievedItems */
        start local 2 // java.util.List retrievedItems
         2: .line 133
            aload 2 /* retrievedItems */
            ifnull 4
         3: .line 134
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 2 /* retrievedItems */
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         4: .line 136
      StackMap locals: java.util.List
      StackMap stack:
            aload 0 /* this */
            aload 1 /* currentPage */
            invokeinterface com.microsoft.azure.Page.nextPageLink:()Ljava/lang/String;
            invokevirtual com.microsoft.azure.PagedList.cachePage:(Ljava/lang/String;)V
         5: .line 137
            return
        end local 2 // java.util.List retrievedItems
        end local 1 // com.microsoft.azure.Page currentPage
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lcom/microsoft/azure/PagedList<TE;>;
            0    6     1     currentPage  Lcom/microsoft/azure/Page<TE;>;
            2    6     2  retrievedItems  Ljava/util/List<TE;>;
    Signature: (Lcom/microsoft/azure/Page<TE;>;)V
    MethodParameters:
             Name  Flags
      currentPage  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList this
         0: .line 265
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.loadAll:()V
         1: .line 266
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/microsoft/azure/PagedList<TE;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList this
         0: .line 271
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 1
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.hasNextPage:()Z
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/microsoft/azure/PagedList<TE;>;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // java.lang.Object o
         0: .line 276
            aload 0 /* this */
            aload 1 /* o */
            invokevirtual com.microsoft.azure.PagedList.indexOf:(Ljava/lang/Object;)I
            iflt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/microsoft/azure/PagedList<TE;>;
            0    2     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public java.util.Iterator<E> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList this
         0: .line 281
            new com.microsoft.azure.PagedList$ListItr
            dup
            aload 0 /* this */
            iconst_0
            invokespecial com.microsoft.azure.PagedList$ListItr.<init>:(Lcom/microsoft/azure/PagedList;I)V
            areturn
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PagedList<TE;>;
    Signature: ()Ljava/util/Iterator<TE;>;

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList this
         0: .line 286
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.loadAll:()V
         1: .line 287
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            invokeinterface java.util.List.toArray:()[Ljava/lang/Object;
            areturn
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/microsoft/azure/PagedList<TE;>;

  public <T> T[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // java.lang.Object[] a
         0: .line 292
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.loadAll:()V
         1: .line 293
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 1 /* a */
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] a
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/microsoft/azure/PagedList<TE;>;
            0    2     1     a  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)[TT;
    MethodParameters:
      Name  Flags
      a     

  public boolean add();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // java.lang.Object e
         0: .line 298
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 1 /* e */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object e
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PagedList<TE;>;
            0    1     1     e  TE;
    Signature: (TE;)Z
    MethodParameters:
      Name  Flags
      e     

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // java.lang.Object o
         0: .line 303
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 1 /* o */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PagedList<TE;>;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public boolean containsAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // java.util.Collection c
         0: .line 308
            aload 1 /* c */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: com.microsoft.azure.PagedList java.util.Collection top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 2 /* e */
        start local 2 // java.lang.Object e
         2: .line 309
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual com.microsoft.azure.PagedList.contains:(Ljava/lang/Object;)Z
            ifne 4
         3: .line 310
            iconst_0
            ireturn
        end local 2 // java.lang.Object e
         4: .line 308
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         5: .line 313
            iconst_1
            ireturn
        end local 1 // java.util.Collection c
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/microsoft/azure/PagedList<TE;>;
            0    6     1     c  Ljava/util/Collection<*>;
            2    4     2     e  Ljava/lang/Object;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean addAll(java.util.Collection<? extends E>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // java.util.Collection c
         0: .line 318
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 1 /* c */
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection c
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PagedList<TE;>;
            0    1     1     c  Ljava/util/Collection<+TE;>;
    Signature: (Ljava/util/Collection<+TE;>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean addAll(int, java.util.Collection<? extends E>);
    descriptor: (ILjava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // int index
        start local 2 // java.util.Collection c
         0: .line 323
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* c */
            invokeinterface java.util.List.addAll:(ILjava/util/Collection;)Z
            ireturn
        end local 2 // java.util.Collection c
        end local 1 // int index
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/microsoft/azure/PagedList<TE;>;
            0    1     1  index  I
            0    1     2      c  Ljava/util/Collection<+TE;>;
    Signature: (ILjava/util/Collection<+TE;>;)Z
    MethodParameters:
       Name  Flags
      index  
      c      

  public boolean removeAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // java.util.Collection c
         0: .line 328
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 1 /* c */
            invokeinterface java.util.List.removeAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection c
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PagedList<TE;>;
            0    1     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean retainAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // java.util.Collection c
         0: .line 333
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 1 /* c */
            invokeinterface java.util.List.retainAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection c
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PagedList<TE;>;
            0    1     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList this
         0: .line 338
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         1: .line 339
            return
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/microsoft/azure/PagedList<TE;>;

  public E get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // int index
         0: .line 343
            goto 2
         1: .line 344
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.loadNextPage:()V
         2: .line 343
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmplt 3
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.hasNextPage:()Z
            ifne 1
         3: .line 346
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int index
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/microsoft/azure/PagedList<TE;>;
            0    4     1  index  I
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  

  public E set(int, );
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 351
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* element */
            invokeinterface java.util.List.set:(ILjava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/microsoft/azure/PagedList<TE;>;
            0    1     1    index  I
            0    1     2  element  TE;
    Signature: (ITE;)TE;
    MethodParameters:
         Name  Flags
      index    
      element  

  public void add(int, );
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 356
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* element */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         1: .line 357
            return
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/microsoft/azure/PagedList<TE;>;
            0    2     1    index  I
            0    2     2  element  TE;
    Signature: (ITE;)V
    MethodParameters:
         Name  Flags
      index    
      element  

  public E remove();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // int index
         0: .line 361
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            areturn
        end local 1 // int index
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/microsoft/azure/PagedList<TE;>;
            0    1     1  index  I
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // java.lang.Object o
         0: .line 366
            iconst_0
            istore 2 /* index */
        start local 2 // int index
         1: .line 367
            aload 1 /* o */
            ifnonnull 9
         2: .line 368
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.iterator:()Ljava/util/Iterator;
            astore 4
            goto 7
      StackMap locals: com.microsoft.azure.PagedList java.lang.Object int top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 3 /* item */
        start local 3 // java.lang.Object item
         4: .line 369
            aload 3 /* item */
            ifnonnull 6
         5: .line 370
            iload 2 /* index */
            ireturn
         6: .line 372
      StackMap locals: com.microsoft.azure.PagedList java.lang.Object int java.lang.Object java.util.Iterator
      StackMap stack:
            iinc 2 /* index */ 1
        end local 3 // java.lang.Object item
         7: .line 368
      StackMap locals: com.microsoft.azure.PagedList java.lang.Object int top java.util.Iterator
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         8: .line 374
            goto 15
         9: .line 375
      StackMap locals: com.microsoft.azure.PagedList java.lang.Object int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.iterator:()Ljava/util/Iterator;
            astore 4
            goto 14
      StackMap locals: com.microsoft.azure.PagedList java.lang.Object int top java.util.Iterator
      StackMap stack:
        10: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 3 /* item */
        start local 3 // java.lang.Object item
        11: .line 376
            aload 3 /* item */
            aload 1 /* o */
            if_acmpne 13
        12: .line 377
            iload 2 /* index */
            ireturn
        13: .line 379
      StackMap locals: com.microsoft.azure.PagedList java.lang.Object int java.lang.Object java.util.Iterator
      StackMap stack:
            iinc 2 /* index */ 1
        end local 3 // java.lang.Object item
        14: .line 375
      StackMap locals: com.microsoft.azure.PagedList java.lang.Object int top java.util.Iterator
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        15: .line 382
      StackMap locals: com.microsoft.azure.PagedList java.lang.Object int
      StackMap stack:
            iconst_m1
            ireturn
        end local 2 // int index
        end local 1 // java.lang.Object o
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lcom/microsoft/azure/PagedList<TE;>;
            0   16     1      o  Ljava/lang/Object;
            1   16     2  index  I
            4    7     3   item  TE;
           11   14     3   item  TE;
    MethodParameters:
      Name  Flags
      o     

  public int lastIndexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // java.lang.Object o
         0: .line 387
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.loadAll:()V
         1: .line 388
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            aload 1 /* o */
            invokeinterface java.util.List.lastIndexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/microsoft/azure/PagedList<TE;>;
            0    2     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public java.util.ListIterator<E> listIterator();
    descriptor: ()Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.microsoft.azure.PagedList this
         0: .line 393
            new com.microsoft.azure.PagedList$ListItr
            dup
            aload 0 /* this */
            iconst_0
            invokespecial com.microsoft.azure.PagedList$ListItr.<init>:(Lcom/microsoft/azure/PagedList;I)V
            areturn
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/azure/PagedList<TE;>;
    Signature: ()Ljava/util/ListIterator<TE;>;

  public java.util.ListIterator<E> listIterator(int);
    descriptor: (I)Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // int index
         0: .line 398
            goto 2
         1: .line 399
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.loadNextPage:()V
         2: .line 398
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmplt 3
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.hasNextPage:()Z
            ifne 1
         3: .line 401
      StackMap locals:
      StackMap stack:
            new com.microsoft.azure.PagedList$ListItr
            dup
            aload 0 /* this */
            iload 1 /* index */
            invokespecial com.microsoft.azure.PagedList$ListItr.<init>:(Lcom/microsoft/azure/PagedList;I)V
            areturn
        end local 1 // int index
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/microsoft/azure/PagedList<TE;>;
            0    4     1  index  I
    Signature: (I)Ljava/util/ListIterator<TE;>;
    MethodParameters:
       Name  Flags
      index  

  public java.util.List<E> subList(int, int);
    descriptor: (II)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.microsoft.azure.PagedList this
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 406
            goto 2
         1: .line 409
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.loadNextPage:()V
         2: .line 406
      StackMap locals:
      StackMap stack:
            iload 1 /* fromIndex */
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmpge 4
         3: .line 407
            iload 2 /* toIndex */
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmplt 5
         4: .line 408
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.microsoft.azure.PagedList.hasNextPage:()Z
            ifne 1
         5: .line 411
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            invokeinterface java.util.List.subList:(II)Ljava/util/List;
            areturn
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // com.microsoft.azure.PagedList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lcom/microsoft/azure/PagedList<TE;>;
            0    6     1  fromIndex  I
            0    6     2    toIndex  I
    Signature: (II)Ljava/util/List<TE;>;
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    
}
Signature: <E:Ljava/lang/Object;>Ljava/lang/Object;Ljava/util/List<TE;>;
SourceFile: "PagedList.java"
NestMembers:
  com.microsoft.azure.PagedList$ListItr
InnerClasses:
  private ListItr = com.microsoft.azure.PagedList$ListItr of com.microsoft.azure.PagedList