Enum AccuracyInfluenceAnalysisState
- java.lang.Object
-
- java.lang.Enum<AccuracyInfluenceAnalysisState>
-
- org.palladiosimulator.analyzer.workflow.runconfig.AccuracyInfluenceAnalysisState
-
- All Implemented Interfaces:
Serializable
,Comparable<AccuracyInfluenceAnalysisState>
public enum AccuracyInfluenceAnalysisState extends Enum<AccuracyInfluenceAnalysisState>
The list of states for the accuracy analysis.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AS_SPECIFIED
The values are used without any modification.MAXIMUM
The maximal value within the tolerance bound is used.MINIMUM
The minimal value within the tolerance bound is used.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AccuracyInfluenceAnalysisState
valueOf(String name)
Returns the enum constant of this type with the specified name.static AccuracyInfluenceAnalysisState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MINIMUM
public static final AccuracyInfluenceAnalysisState MINIMUM
The minimal value within the tolerance bound is used.
-
AS_SPECIFIED
public static final AccuracyInfluenceAnalysisState AS_SPECIFIED
The values are used without any modification.
-
MAXIMUM
public static final AccuracyInfluenceAnalysisState MAXIMUM
The maximal value within the tolerance bound is used.
-
-
Method Detail
-
values
public static AccuracyInfluenceAnalysisState[] 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 (AccuracyInfluenceAnalysisState c : AccuracyInfluenceAnalysisState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccuracyInfluenceAnalysisState 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
-
-