Package mondrian.util
Class UnsupportedList.ListItr
- java.lang.Object
-
- mondrian.util.UnsupportedList.Itr
-
- mondrian.util.UnsupportedList.ListItr
-
- All Implemented Interfaces:
Iterator<T>
,ListIterator<T>
- Enclosing class:
- UnsupportedList<T>
protected class UnsupportedList.ListItr extends UnsupportedList.Itr implements ListIterator<T>
-
-
Field Summary
-
Fields inherited from class mondrian.util.UnsupportedList.Itr
cursor, lastRet
-
-
Constructor Summary
Constructors Constructor Description ListItr(int index)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(T o)
boolean
hasPrevious()
int
nextIndex()
T
previous()
int
previousIndex()
void
set(T o)
-
Methods inherited from class mondrian.util.UnsupportedList.Itr
hasNext, next, remove
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Methods inherited from interface java.util.ListIterator
hasNext, next, remove
-
-
-
-
Method Detail
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPrevious
in interfaceListIterator<T>
-
previous
public T previous()
- Specified by:
previous
in interfaceListIterator<T>
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfaceListIterator<T>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfaceListIterator<T>
-
set
public void set(T o)
- Specified by:
set
in interfaceListIterator<T>
-
add
public void add(T o)
- Specified by:
add
in interfaceListIterator<T>
-
-