Class UpcomingSelectionIterator<S>
java.lang.Object
org.optaplanner.core.impl.heuristic.selector.common.iterator.SelectionIterator<S>
org.optaplanner.core.impl.heuristic.selector.common.iterator.UpcomingSelectionIterator<S>
- Type Parameters:
S
- Selection type, for example aMove
class, an entity class or a value class.
- All Implemented Interfaces:
Iterator<S>
- Direct Known Subclasses:
AbstractOriginalChangeIterator
,AbstractOriginalSwapIterator
,AbstractRandomChangeIterator
,AbstractRandomSwapIterator
,CartesianProductMoveSelector.OriginalCartesianProductMoveIterator
,FilteringEntitySelector.JustInTimeFilteringEntityIterator
,FilteringValueSelector.JustInTimeFilteringValueIterator
,InitializedValueSelector.JustInTimeInitializedValueIterator
,OriginalListChangeIterator
,OriginalListSwapIterator
,RandomListChangeIterator
,RandomListSwapIterator
,UpcomingSelectionListIterator
IMPORTANT: The constructor of any subclass of this abstract class, should never call any of its child
Selector
's Iterator.hasNext()
or Iterator.next()
methods,
because that can cause descendant Selector
s to be selected too early
(which breaks MimicReplayingEntitySelector
).-
Field Summary
-
Constructor Summary
-
Method Summary
Methods inherited from class org.optaplanner.core.impl.heuristic.selector.common.iterator.SelectionIterator
remove
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Field Details
-
upcomingCreated
protected boolean upcomingCreated -
hasUpcomingSelection
protected boolean hasUpcomingSelection -
upcomingSelection
-
-
Constructor Details
-
UpcomingSelectionIterator
public UpcomingSelectionIterator()
-
-
Method Details