java.util
Class AbstractList.ListItr

java.lang.Object
  |
  +--java.util.AbstractList.Itr
        |
        +--java.util.AbstractList.ListItr

private class AbstractList.ListItr
extends AbstractList.Itr
implements ListIterator


Fields inherited from class java.util.AbstractList.Itr
cursor, expectedModCount, lastRet
 
Constructor Summary
(package private) AbstractList.ListItr(int index)
           
 
Method Summary
 void add(Object o)
           
 boolean hasPrevious()
           
 int nextIndex()
           
 Object previous()
           
 int previousIndex()
           
 void set(Object o)
           
 
Methods inherited from class java.util.AbstractList.Itr
checkForComodification, hasNext, next, remove
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

AbstractList.ListItr

AbstractList.ListItr(int index)
Method Detail

hasPrevious

public boolean hasPrevious()
Specified by:
hasPrevious in interface ListIterator

previous

public Object previous()
Specified by:
previous in interface ListIterator

nextIndex

public int nextIndex()
Specified by:
nextIndex in interface ListIterator

previousIndex

public int previousIndex()
Specified by:
previousIndex in interface ListIterator

set

public void set(Object o)
Specified by:
set in interface ListIterator

add

public void add(Object o)
Specified by:
add in interface ListIterator