Class ExternalizedIndexVariableSupply<Solution_>
- java.lang.Object
-
- org.optaplanner.core.impl.domain.variable.index.ExternalizedIndexVariableSupply<Solution_>
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,AbstractVariableListener<Solution_,Object>
,IndexVariableSupply
,SourcedVariableListener<Solution_>
,ListVariableListener<Solution_,Object>
,Supply
public class ExternalizedIndexVariableSupply<Solution_> extends Object implements SourcedVariableListener<Solution_>, ListVariableListener<Solution_,Object>, IndexVariableSupply
Alternative toIndexVariableListener
.
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<Object,Integer>
indexMap
protected ListVariableDescriptor<Solution_>
sourceVariableDescriptor
-
Constructor Summary
Constructors Constructor Description ExternalizedIndexVariableSupply(ListVariableDescriptor<Solution_> sourceVariableDescriptor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
afterElementAdded(ScoreDirector<Solution_> scoreDirector, Object entity, int index)
void
afterElementMoved(ScoreDirector<Solution_> scoreDirector, Object sourceEntity, int sourceIndex, Object destinationEntity, int destinationIndex)
void
afterElementRemoved(ScoreDirector<Solution_> scoreDirector, Object entity, int index)
void
afterEntityAdded(ScoreDirector<Solution_> scoreDirector, Object entity)
void
afterEntityRemoved(ScoreDirector<Solution_> scoreDirector, Object entity)
void
beforeElementAdded(ScoreDirector<Solution_> scoreDirector, Object entity, int index)
void
beforeElementMoved(ScoreDirector<Solution_> scoreDirector, Object sourceEntity, int sourceIndex, Object destinationEntity, int destinationIndex)
void
beforeElementRemoved(ScoreDirector<Solution_> scoreDirector, Object entity, int index)
void
beforeEntityAdded(ScoreDirector<Solution_> scoreDirector, Object entity)
void
beforeEntityRemoved(ScoreDirector<Solution_> scoreDirector, Object entity)
void
close()
Called before thisAbstractVariableListener
is thrown away and not used anymore.Integer
getIndex(Object element)
GetplanningValue
's index in thelist variable
it is an element of.VariableDescriptor<Solution_>
getSourceVariableDescriptor()
void
resetWorkingSolution(ScoreDirector<Solution_> scoreDirector)
Called when the entire working solution changes.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.optaplanner.core.api.domain.variable.AbstractVariableListener
requiresUniqueEntityEvents
-
-
-
-
Field Detail
-
sourceVariableDescriptor
protected final ListVariableDescriptor<Solution_> sourceVariableDescriptor
-
-
Constructor Detail
-
ExternalizedIndexVariableSupply
public ExternalizedIndexVariableSupply(ListVariableDescriptor<Solution_> sourceVariableDescriptor)
-
-
Method Detail
-
getSourceVariableDescriptor
public VariableDescriptor<Solution_> getSourceVariableDescriptor()
- Specified by:
getSourceVariableDescriptor
in interfaceSourcedVariableListener<Solution_>
-
resetWorkingSolution
public void resetWorkingSolution(ScoreDirector<Solution_> scoreDirector)
Description copied from interface:AbstractVariableListener
Called when the entire working solution changes. In this event, the other before..()/after...() methods will not be called. At this point, implementations should clear state, if any.- Specified by:
resetWorkingSolution
in interfaceAbstractVariableListener<Solution_,Object>
- Parameters:
scoreDirector
- never null
-
close
public void close()
Description copied from interface:AbstractVariableListener
Called before thisAbstractVariableListener
is thrown away and not used anymore.- Specified by:
close
in interfaceAbstractVariableListener<Solution_,Object>
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
-
beforeEntityAdded
public void beforeEntityAdded(ScoreDirector<Solution_> scoreDirector, Object entity)
- Specified by:
beforeEntityAdded
in interfaceAbstractVariableListener<Solution_,Object>
- Parameters:
scoreDirector
- never nullentity
- never null
-
afterEntityAdded
public void afterEntityAdded(ScoreDirector<Solution_> scoreDirector, Object entity)
- Specified by:
afterEntityAdded
in interfaceAbstractVariableListener<Solution_,Object>
- Parameters:
scoreDirector
- never nullentity
- never null
-
beforeElementAdded
public void beforeElementAdded(ScoreDirector<Solution_> scoreDirector, Object entity, int index)
- Specified by:
beforeElementAdded
in interfaceListVariableListener<Solution_,Object>
-
afterElementAdded
public void afterElementAdded(ScoreDirector<Solution_> scoreDirector, Object entity, int index)
- Specified by:
afterElementAdded
in interfaceListVariableListener<Solution_,Object>
-
beforeElementRemoved
public void beforeElementRemoved(ScoreDirector<Solution_> scoreDirector, Object entity, int index)
- Specified by:
beforeElementRemoved
in interfaceListVariableListener<Solution_,Object>
-
afterElementRemoved
public void afterElementRemoved(ScoreDirector<Solution_> scoreDirector, Object entity, int index)
- Specified by:
afterElementRemoved
in interfaceListVariableListener<Solution_,Object>
-
beforeElementMoved
public void beforeElementMoved(ScoreDirector<Solution_> scoreDirector, Object sourceEntity, int sourceIndex, Object destinationEntity, int destinationIndex)
- Specified by:
beforeElementMoved
in interfaceListVariableListener<Solution_,Object>
-
afterElementMoved
public void afterElementMoved(ScoreDirector<Solution_> scoreDirector, Object sourceEntity, int sourceIndex, Object destinationEntity, int destinationIndex)
- Specified by:
afterElementMoved
in interfaceListVariableListener<Solution_,Object>
-
beforeEntityRemoved
public void beforeEntityRemoved(ScoreDirector<Solution_> scoreDirector, Object entity)
- Specified by:
beforeEntityRemoved
in interfaceAbstractVariableListener<Solution_,Object>
- Parameters:
scoreDirector
- never nullentity
- never null
-
afterEntityRemoved
public void afterEntityRemoved(ScoreDirector<Solution_> scoreDirector, Object entity)
- Specified by:
afterEntityRemoved
in interfaceAbstractVariableListener<Solution_,Object>
- Parameters:
scoreDirector
- never nullentity
- never null
-
getIndex
public Integer getIndex(Object element)
Description copied from interface:IndexVariableSupply
GetplanningValue
's index in thelist variable
it is an element of.- Specified by:
getIndex
in interfaceIndexVariableSupply
- Parameters:
element
- never null- Returns:
planningValue
's index in the list variable it is an element of ornull
if the value is unassigned
-
-