Class TransformedList.TransformedListIterator
- java.lang.Object
-
- org.apache.commons.collections4.iterators.AbstractListIteratorDecorator<E>
-
- org.apache.commons.collections4.list.TransformedList.TransformedListIterator
-
- All Implemented Interfaces:
Iterator<E>,ListIterator<E>
- Enclosing class:
- TransformedList<E>
protected class TransformedList.TransformedListIterator extends AbstractListIteratorDecorator<E>
Inner class Iterator for the TransformedList
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedTransformedListIterator(ListIterator<E> iterator)Create a new transformed list iterator.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(E object)voidset(E object)-
Methods inherited from class org.apache.commons.collections4.iterators.AbstractListIteratorDecorator
getListIterator, hasNext, hasPrevious, next, nextIndex, previous, previousIndex, 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
-
-
-
-
Constructor Detail
-
TransformedListIterator
protected TransformedListIterator(ListIterator<E> iterator)
Create a new transformed list iterator.- Parameters:
iterator- the list iterator to decorate
-
-
Method Detail
-
add
public void add(E object)
Description copied from class:AbstractListIteratorDecorator- Specified by:
addin interfaceListIterator<E>- Overrides:
addin classAbstractListIteratorDecorator<E>
-
set
public void set(E object)
Description copied from class:AbstractListIteratorDecorator- Specified by:
setin interfaceListIterator<E>- Overrides:
setin classAbstractListIteratorDecorator<E>
-
-