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 start local 2 0: aload 0
aload 1
putfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
iconst_m1
putfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
2: aload 0
iload 2
putfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
3: return
end local 2 end local 0 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 0: aload 0
getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
aload 0
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
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 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 0: aload 0
getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
aload 0
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: aload 0
getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
invokevirtual com.microsoft.azure.PagedList.hasNextPage:()Z
ifne 3
2: new java.util.NoSuchElementException
dup
invokespecial java.util.NoSuchElementException.<init>:()V
athrow
3: StackMap locals:
StackMap stack:
aload 0
getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
invokevirtual com.microsoft.azure.PagedList.loadNextPage:()V
4: aload 0
invokevirtual com.microsoft.azure.PagedList$ListItr.next:()Ljava/lang/Object;
areturn
5: StackMap locals:
StackMap stack:
aload 0
getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
aload 0
getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
invokeinterface java.util.List.get:(I)Ljava/lang/Object;
astore 1
start local 1 6: aload 0
aload 0
getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
putfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
7: aload 0
aload 0
getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
iconst_1
iadd
putfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
8: aload 1
9: areturn
end local 1 10: StackMap locals:
StackMap stack: java.lang.IndexOutOfBoundsException
pop
11: new java.util.ConcurrentModificationException
dup
invokespecial java.util.ConcurrentModificationException.<init>:()V
athrow
end local 0 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 0: aload 0
getfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
ifge 2
1: new java.lang.IllegalStateException
dup
invokespecial java.lang.IllegalStateException.<init>:()V
athrow
2: StackMap locals:
StackMap stack:
aload 0
getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
aload 0
getfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
pop
3: aload 0
aload 0
getfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
putfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
4: aload 0
iconst_m1
putfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
5: goto 8
StackMap locals:
StackMap stack: java.lang.IndexOutOfBoundsException
6: pop
7: new java.util.ConcurrentModificationException
dup
invokespecial java.util.ConcurrentModificationException.<init>:()V
athrow
8: StackMap locals:
StackMap stack:
return
end local 0 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 0: aload 0
getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
ifeq 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 0 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 0: aload 0
getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
iconst_1
isub
istore 1
start local 1 1: iload 1
ifge 3
2: new java.util.NoSuchElementException
dup
invokespecial java.util.NoSuchElementException.<init>:()V
athrow
3: StackMap locals: int
StackMap stack:
iload 1
aload 0
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: new java.util.ConcurrentModificationException
dup
invokespecial java.util.ConcurrentModificationException.<init>:()V
athrow
5: StackMap locals:
StackMap stack:
aload 0
iload 1
putfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
6: aload 0
iload 1
putfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
7: aload 0
getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
aload 0
getfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
invokeinterface java.util.List.get:(I)Ljava/lang/Object;
8: areturn
9: StackMap locals:
StackMap stack: java.lang.IndexOutOfBoundsException
pop
10: new java.util.ConcurrentModificationException
dup
invokespecial java.util.ConcurrentModificationException.<init>:()V
athrow
end local 1 end local 0 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 0: aload 0
getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
ireturn
end local 0 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 0: aload 0
getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
iconst_1
isub
ireturn
end local 0 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 start local 1 0: aload 0
getfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
ifge 2
1: new java.lang.IllegalStateException
dup
invokespecial java.lang.IllegalStateException.<init>:()V
athrow
2: StackMap locals:
StackMap stack:
aload 0
getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
aload 0
getfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
aload 1
invokeinterface java.util.List.set:(ILjava/lang/Object;)Ljava/lang/Object;
pop
3: goto 6
StackMap locals:
StackMap stack: java.lang.IndexOutOfBoundsException
4: pop
5: new java.util.ConcurrentModificationException
dup
invokespecial java.util.ConcurrentModificationException.<init>:()V
athrow
6: StackMap locals:
StackMap stack:
return
end local 1 end local 0 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 start local 1 0: aload 0
getfield com.microsoft.azure.PagedList$ListItr.this$0:Lcom/microsoft/azure/PagedList;
getfield com.microsoft.azure.PagedList.items:Ljava/util/List;
aload 0
getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
aload 1
invokeinterface java.util.List.add:(ILjava/lang/Object;)V
1: aload 0
aload 0
getfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
iconst_1
iadd
putfield com.microsoft.azure.PagedList$ListItr.nextIndex:I
2: aload 0
iconst_m1
putfield com.microsoft.azure.PagedList$ListItr.lastRetIndex:I
3: goto 6
StackMap locals:
StackMap stack: java.lang.IndexOutOfBoundsException
4: pop
5: new java.util.ConcurrentModificationException
dup
invokespecial java.util.ConcurrentModificationException.<init>:()V
athrow
6: StackMap locals:
StackMap stack:
return
end local 1 end local 0 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