Class SelectionListIterator<S>
- java.lang.Object
-
- org.optaplanner.core.impl.heuristic.selector.common.iterator.SelectionListIterator<S>
-
- All Implemented Interfaces:
Iterator<S>,ListIterator<S>
public abstract class SelectionListIterator<S> extends Object implements ListIterator<S>
-
-
Constructor Summary
Constructors Constructor Description SelectionListIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(Object o)voidremove()voidset(Object o)-
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, hasPrevious, next, nextIndex, previous, previousIndex
-
-
-
-
Method Detail
-
remove
public void remove()
-
set
public void set(Object o)
- Specified by:
setin interfaceListIterator<S>
-
add
public void add(Object o)
- Specified by:
addin interfaceListIterator<S>
-
-