Enum ErrorManager.CalculationStage
- java.lang.Object
-
- java.lang.Enum<ErrorManager.CalculationStage>
-
- bio.singa.simulation.model.simulation.error.ErrorManager.CalculationStage
-
- All Implemented Interfaces:
Serializable,Comparable<ErrorManager.CalculationStage>
- Enclosing class:
- ErrorManager
public static enum ErrorManager.CalculationStage extends Enum<ErrorManager.CalculationStage>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EVALUATION_STAGESETUP_STAGESKIPTIME_STEP_RESCALED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorManager.CalculationStagevalueOf(String name)Returns the enum constant of this type with the specified name.static ErrorManager.CalculationStage[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SETUP_STAGE
public static final ErrorManager.CalculationStage SETUP_STAGE
-
EVALUATION_STAGE
public static final ErrorManager.CalculationStage EVALUATION_STAGE
-
TIME_STEP_RESCALED
public static final ErrorManager.CalculationStage TIME_STEP_RESCALED
-
SKIP
public static final ErrorManager.CalculationStage SKIP
-
-
Method Detail
-
values
public static ErrorManager.CalculationStage[] 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 (ErrorManager.CalculationStage c : ErrorManager.CalculationStage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ErrorManager.CalculationStage 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
-
-