Enum InitializingScoreTrendLevel
java.lang.Object
java.lang.Enum<InitializingScoreTrendLevel>
org.optaplanner.core.config.score.trend.InitializingScoreTrendLevel
- All Implemented Interfaces:
Serializable,Comparable<InitializingScoreTrendLevel>
Bounds 1 score level of the possible
Scores for a PlanningSolution as more and more variables are initialized
(while the already initialized variables don't change).- See Also:
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic InitializingScoreTrendLevelReturns the enum constant of this type with the specified name.static InitializingScoreTrendLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ANY
No predictions can be made. -
ONLY_UP
During initialization, theScoreis monotonically increasing. This means: given a non-fully initializedPlanningSolutionwith aScoreA, initializing 1 or more variables (without altering the already initialized variables) will give aPlanningSolutionfor which theScoreis better or equal to A.In practice, this means that the score constraints of this score level are all positive, and initializing a variable cannot unmatch an already matched positive constraint.
Also implies the perfect minimum score is 0.
-
ONLY_DOWN
During initialization, theScoreis monotonically decreasing. This means: given a non-fully initializedPlanningSolutionwith aScoreA, initializing 1 or more variables (without altering the already initialized variables) will give aPlanningSolutionfor which theScoreis worse or equal to A.In practice, this means that the score constraints of this score level are all negative, and initializing a variable cannot unmatch an already matched negative constraint.
Also implies the perfect maximum score is 0.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-