Interface RepeatableIterator<E>
-
- All Superinterfaces:
Iterator<E>
- All Known Subinterfaces:
QueueConsumers<T>
- All Known Implementing Classes:
QueueConsumersImpl,RepeatableIteratorWrapper,UpdatableIterator
public interface RepeatableIterator<E> extends Iterator<E>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidremoved(E itemRemoved)voidrepeat()If the current value should repeat.-
Methods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
-
-
-
-
Method Detail
-
repeat
void repeat()
If the current value should repeat.
-
removed
void removed(E itemRemoved)
-
-