Class FieldAccessingSolutionCloner<Solution_>
- java.lang.Object
-
- org.optaplanner.core.impl.domain.solution.cloner.FieldAccessingSolutionCloner<Solution_>
-
- Type Parameters:
Solution_
- the solution type, the class with thePlanningSolution
annotation
- All Implemented Interfaces:
SolutionCloner<Solution_>
public class FieldAccessingSolutionCloner<Solution_> extends Object implements SolutionCloner<Solution_>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected class
FieldAccessingSolutionCloner.FieldAccessingSolutionClonerRun
protected static class
FieldAccessingSolutionCloner.Unprocessed
-
Field Summary
Fields Modifier and Type Field Description protected ConcurrentMap<Class<?>,Constructor<?>>
constructorMemoization
protected DeepCloningUtils
deepCloningUtils
protected ConcurrentMap<Class<?>,List<Field>>
fieldListMemoization
protected SolutionDescriptor<Solution_>
solutionDescriptor
-
Constructor Summary
Constructors Constructor Description FieldAccessingSolutionCloner(SolutionDescriptor<Solution_> solutionDescriptor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Solution_
cloneSolution(Solution_ originalSolution)
Does a planning clone.protected boolean
isClassDeepCloned(Class<?> type)
protected <C> Constructor<C>
retrieveCachedConstructor(Class<C> clazz)
This method is thread-safe.protected <C> List<Field>
retrieveCachedFields(Class<C> clazz)
This method is thread-safe.
-
-
-
Field Detail
-
solutionDescriptor
protected final SolutionDescriptor<Solution_> solutionDescriptor
-
constructorMemoization
protected final ConcurrentMap<Class<?>,Constructor<?>> constructorMemoization
-
fieldListMemoization
protected final ConcurrentMap<Class<?>,List<Field>> fieldListMemoization
-
deepCloningUtils
protected final DeepCloningUtils deepCloningUtils
-
-
Constructor Detail
-
FieldAccessingSolutionCloner
public FieldAccessingSolutionCloner(SolutionDescriptor<Solution_> solutionDescriptor)
-
-
Method Detail
-
cloneSolution
public Solution_ cloneSolution(Solution_ originalSolution)
Description copied from interface:SolutionCloner
Does a planning clone. The returnedPlanningSolution
clone must fulfill these requirements:- The clone must represent the same planning problem.
Usually it reuses the same instances of the problem facts and problem fact collections as the
original
. - The clone must have the same (equal) score as the
original
. - The clone must use different, cloned instances of the entities and entity collections.
If a cloned entity changes, the original must remain unchanged.
If an entity is added or removed in a cloned
PlanningSolution
, the originalPlanningSolution
must remain unchanged.
This method is thread-safe.
- Specified by:
cloneSolution
in interfaceSolutionCloner<Solution_>
- Parameters:
originalSolution
- never null, the originalPlanningSolution
- Returns:
- never null, the cloned
PlanningSolution
- The clone must represent the same planning problem.
Usually it reuses the same instances of the problem facts and problem fact collections as the
-
retrieveCachedConstructor
protected <C> Constructor<C> retrieveCachedConstructor(Class<C> clazz)
This method is thread-safe.- Type Parameters:
C
- type- Parameters:
clazz
- never null- Returns:
- never null
-
retrieveCachedFields
protected <C> List<Field> retrieveCachedFields(Class<C> clazz)
This method is thread-safe.- Type Parameters:
C
- type- Parameters:
clazz
- never null- Returns:
- never null
-
isClassDeepCloned
protected boolean isClassDeepCloned(Class<?> type)
-
-