Enum SolverRankingType
- java.lang.Object
-
- java.lang.Enum<SolverRankingType>
-
- org.optaplanner.benchmark.config.ranking.SolverRankingType
-
- All Implemented Interfaces:
Serializable
,Comparable<SolverRankingType>
public enum SolverRankingType extends Enum<SolverRankingType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TOTAL_RANKING
Maximize the overall ranking.TOTAL_SCORE
Maximize the overall score, so minimize the overall cost if allPlanningSolution
s would be executed.WORST_SCORE
Minimize the worst case scenario.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SolverRankingType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SolverRankingType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOTAL_SCORE
public static final SolverRankingType TOTAL_SCORE
Maximize the overall score, so minimize the overall cost if allPlanningSolution
s would be executed.- See Also:
TotalScoreSolverRankingComparator
-
WORST_SCORE
public static final SolverRankingType WORST_SCORE
Minimize the worst case scenario.- See Also:
WorstScoreSolverRankingComparator
-
TOTAL_RANKING
public static final SolverRankingType TOTAL_RANKING
Maximize the overall ranking.- See Also:
TotalRankSolverRankingWeightFactory
-
-
Method Detail
-
values
public static SolverRankingType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SolverRankingType c : SolverRankingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SolverRankingType valueOf(String name)
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
-
-