Package de.uka.ipd.sdq.tcfmoop.config
Enum TerminationCriteriaNames
- java.lang.Object
-
- java.lang.Enum<TerminationCriteriaNames>
-
- de.uka.ipd.sdq.tcfmoop.config.TerminationCriteriaNames
-
- All Implemented Interfaces:
Serializable
,Comparable<TerminationCriteriaNames>
public enum TerminationCriteriaNames extends Enum<TerminationCriteriaNames>
The names of the termination criteria. Used most for identifying them
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TerminationCriteriaNames
valueOf(String name)
Returns the enum constant of this type with the specified name.static TerminationCriteriaNames[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAXIMUM_NUMBER_OF_GENERATIONS
public static final TerminationCriteriaNames MAXIMUM_NUMBER_OF_GENERATIONS
-
ELAPSED_TIME
public static final TerminationCriteriaNames ELAPSED_TIME
-
PARETO_OPTIMAL_SET_STABILITY
public static final TerminationCriteriaNames PARETO_OPTIMAL_SET_STABILITY
-
NO_NEW_PARETO_OPTIMAL_CANDIDATES_FOUND
public static final TerminationCriteriaNames NO_NEW_PARETO_OPTIMAL_CANDIDATES_FOUND
-
MINIMAL_QUALITY_CIRTERIA_VALUE
public static final TerminationCriteriaNames MINIMAL_QUALITY_CIRTERIA_VALUE
-
INSIGNIFICANT_SET_QUALITY_IMPROVEMENT
public static final TerminationCriteriaNames INSIGNIFICANT_SET_QUALITY_IMPROVEMENT
-
GIVEN_PARETO_FRONT_IS_REACHED
public static final TerminationCriteriaNames GIVEN_PARETO_FRONT_IS_REACHED
-
INSIGNIFICANT_PARETO_FRONT_CHANGE
public static final TerminationCriteriaNames INSIGNIFICANT_PARETO_FRONT_CHANGE
-
-
Method Detail
-
values
public static TerminationCriteriaNames[] 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 (TerminationCriteriaNames c : TerminationCriteriaNames.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TerminationCriteriaNames 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
-
-