Interface SelectionSorterWeightFactory<Solution_,T>
-
- Type Parameters:
Solution_
- the solution type, the class with thePlanningSolution
annotationT
- the selection type
- All Known Subinterfaces:
PlanningEntity.NullDifficultyWeightFactory
,PlanningVariable.NullStrengthWeightFactory
public interface SelectionSorterWeightFactory<Solution_,T>
Creates a weight to decide the order of a collections of selections (a selection is aPlanningEntity
, a planningValue, aMove
or aSelector
). The selections are then sorted by their weight, normally ascending unless it's configured descending.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Comparable
createSorterWeight(Solution_ solution, T selection)
-
-
-
Method Detail
-
createSorterWeight
Comparable createSorterWeight(Solution_ solution, T selection)
- Parameters:
solution
- never null, thePlanningSolution
to which the selection belongs or applies toselection
- never null, aPlanningEntity
, a planningValue, aMove
or aSelector
- Returns:
- never null, for example a
Integer
,Double
or a more complexComparable
-
-