final class java.util.ImmutableCollections$ListItr<E> implements java.util.ListIterator<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: java.util.ImmutableCollections$ListItr
  super_class: java.lang.Object
{
  private final java.util.List<E> list;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<TE;>;
    RuntimeVisibleAnnotations: 
      jdk.internal.vm.annotation.Stable()

  private final int size;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      jdk.internal.vm.annotation.Stable()

  private final boolean isListIterator;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      jdk.internal.vm.annotation.Stable()

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

  void <init>(java.util.List<E>, );
    descriptor: (Ljava/util/List;I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // java.util.ImmutableCollections$ListItr this
        start local 1 // java.util.List list
        start local 2 // int size
         0: .line 222
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 223
            aload 0 /* this */
            aload 1 /* list */
            putfield java.util.ImmutableCollections$ListItr.list:Ljava/util/List;
         2: .line 224
            aload 0 /* this */
            iload 2 /* size */
            putfield java.util.ImmutableCollections$ListItr.size:I
         3: .line 225
            aload 0 /* this */
            iconst_0
            putfield java.util.ImmutableCollections$ListItr.cursor:I
         4: .line 226
            aload 0 /* this */
            iconst_0
            putfield java.util.ImmutableCollections$ListItr.isListIterator:Z
         5: .line 227
            return
        end local 2 // int size
        end local 1 // java.util.List list
        end local 0 // java.util.ImmutableCollections$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/util/ImmutableCollections$ListItr<TE;>;
            0    6     1  list  Ljava/util/List<TE;>;
            0    6     2  size  I
    Signature: (Ljava/util/List<TE;>;I)V
    MethodParameters:
      Name  Flags
      list  
      size  

  void <init>(java.util.List<E>, int, );
    descriptor: (Ljava/util/List;II)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // java.util.ImmutableCollections$ListItr this
        start local 1 // java.util.List list
        start local 2 // int size
        start local 3 // int index
         0: .line 229
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 230
            aload 0 /* this */
            aload 1 /* list */
            putfield java.util.ImmutableCollections$ListItr.list:Ljava/util/List;
         2: .line 231
            aload 0 /* this */
            iload 2 /* size */
            putfield java.util.ImmutableCollections$ListItr.size:I
         3: .line 232
            aload 0 /* this */
            iload 3 /* index */
            putfield java.util.ImmutableCollections$ListItr.cursor:I
         4: .line 233
            aload 0 /* this */
            iconst_1
            putfield java.util.ImmutableCollections$ListItr.isListIterator:Z
         5: .line 234
            return
        end local 3 // int index
        end local 2 // int size
        end local 1 // java.util.List list
        end local 0 // java.util.ImmutableCollections$ListItr this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Ljava/util/ImmutableCollections$ListItr<TE;>;
            0    6     1   list  Ljava/util/List<TE;>;
            0    6     2   size  I
            0    6     3  index  I
    Signature: (Ljava/util/List<TE;>;II)V
    MethodParameters:
       Name  Flags
      list   
      size   
      index  

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.ImmutableCollections$ListItr this
         0: .line 237
            aload 0 /* this */
            getfield java.util.ImmutableCollections$ListItr.cursor:I
            aload 0 /* this */
            getfield java.util.ImmutableCollections$ListItr.size:I
            if_icmpeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // java.util.ImmutableCollections$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/util/ImmutableCollections$ListItr<TE;>;

  public E next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.util.ImmutableCollections$ListItr this
         0: .line 242
            aload 0 /* this */
            getfield java.util.ImmutableCollections$ListItr.cursor:I
            istore 1 /* i */
        start local 1 // int i
         1: .line 243
            aload 0 /* this */
            getfield java.util.ImmutableCollections$ListItr.list:Ljava/util/List;
            iload 1 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            astore 2 /* next */
        start local 2 // java.lang.Object next
         2: .line 244
            aload 0 /* this */
            iload 1 /* i */
            iconst_1
            iadd
            putfield java.util.ImmutableCollections$ListItr.cursor:I
         3: .line 245
            aload 2 /* next */
         4: areturn
        end local 2 // java.lang.Object next
        end local 1 // int i
         5: .line 246
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
            pop
         6: .line 247
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
        end local 0 // java.util.ImmutableCollections$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/util/ImmutableCollections$ListItr<TE;>;
            1    5     1     i  I
            2    5     2  next  TE;
      Exception table:
        from    to  target  type
           0     4       5  Class java.lang.IndexOutOfBoundsException
    Signature: ()TE;

  public void remove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.ImmutableCollections$ListItr this
         0: .line 252
            invokestatic java.util.ImmutableCollections.uoe:()Ljava/lang/UnsupportedOperationException;
            athrow
        end local 0 // java.util.ImmutableCollections$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/ImmutableCollections$ListItr<TE;>;

  public boolean hasPrevious();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.ImmutableCollections$ListItr this
         0: .line 256
            aload 0 /* this */
            getfield java.util.ImmutableCollections$ListItr.isListIterator:Z
            ifne 2
         1: .line 257
            invokestatic java.util.ImmutableCollections.uoe:()Ljava/lang/UnsupportedOperationException;
            athrow
         2: .line 259
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.ImmutableCollections$ListItr.cursor:I
            ifeq 3
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 0 // java.util.ImmutableCollections$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/util/ImmutableCollections$ListItr<TE;>;

  public E previous();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // java.util.ImmutableCollections$ListItr this
         0: .line 263
            aload 0 /* this */
            getfield java.util.ImmutableCollections$ListItr.isListIterator:Z
            ifne 2
         1: .line 264
            invokestatic java.util.ImmutableCollections.uoe:()Ljava/lang/UnsupportedOperationException;
            athrow
         2: .line 267
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.ImmutableCollections$ListItr.cursor:I
            iconst_1
            isub
            istore 1 /* i */
        start local 1 // int i
         3: .line 268
            aload 0 /* this */
            getfield java.util.ImmutableCollections$ListItr.list:Ljava/util/List;
            iload 1 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            astore 2 /* previous */
        start local 2 // java.lang.Object previous
         4: .line 269
            aload 0 /* this */
            iload 1 /* i */
            putfield java.util.ImmutableCollections$ListItr.cursor:I
         5: .line 270
            aload 2 /* previous */
         6: areturn
        end local 2 // java.lang.Object previous
        end local 1 // int i
         7: .line 271
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
            pop
         8: .line 272
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
        end local 0 // java.util.ImmutableCollections$ListItr this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Ljava/util/ImmutableCollections$ListItr<TE;>;
            3    7     1         i  I
            4    7     2  previous  TE;
      Exception table:
        from    to  target  type
           2     6       7  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 // java.util.ImmutableCollections$ListItr this
         0: .line 277
            aload 0 /* this */
            getfield java.util.ImmutableCollections$ListItr.isListIterator:Z
            ifne 2
         1: .line 278
            invokestatic java.util.ImmutableCollections.uoe:()Ljava/lang/UnsupportedOperationException;
            athrow
         2: .line 280
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.ImmutableCollections$ListItr.cursor:I
            ireturn
        end local 0 // java.util.ImmutableCollections$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/util/ImmutableCollections$ListItr<TE;>;

  public int previousIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.ImmutableCollections$ListItr this
         0: .line 284
            aload 0 /* this */
            getfield java.util.ImmutableCollections$ListItr.isListIterator:Z
            ifne 2
         1: .line 285
            invokestatic java.util.ImmutableCollections.uoe:()Ljava/lang/UnsupportedOperationException;
            athrow
         2: .line 287
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.ImmutableCollections$ListItr.cursor:I
            iconst_1
            isub
            ireturn
        end local 0 // java.util.ImmutableCollections$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/util/ImmutableCollections$ListItr<TE;>;

  public void set();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // java.util.ImmutableCollections$ListItr this
        start local 1 // java.lang.Object e
         0: .line 291
            invokestatic java.util.ImmutableCollections.uoe:()Ljava/lang/UnsupportedOperationException;
            athrow
        end local 1 // java.lang.Object e
        end local 0 // java.util.ImmutableCollections$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/ImmutableCollections$ListItr<TE;>;
            0    1     1     e  TE;
    Signature: (TE;)V
    MethodParameters:
      Name  Flags
      e     

  public void add();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // java.util.ImmutableCollections$ListItr this
        start local 1 // java.lang.Object e
         0: .line 295
            invokestatic java.util.ImmutableCollections.uoe:()Ljava/lang/UnsupportedOperationException;
            athrow
        end local 1 // java.lang.Object e
        end local 0 // java.util.ImmutableCollections$ListItr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/ImmutableCollections$ListItr<TE;>;
            0    1     1     e  TE;
    Signature: (TE;)V
    MethodParameters:
      Name  Flags
      e     
}
Signature: <E:Ljava/lang/Object;>Ljava/lang/Object;Ljava/util/ListIterator<TE;>;
SourceFile: "ImmutableCollections.java"
NestHost: java.util.ImmutableCollections
InnerClasses:
  final ListItr = java.util.ImmutableCollections$ListItr of java.util.ImmutableCollections