Package jasima.core.experiment
Enum Experiment.ExperimentState
- java.lang.Object
-
- java.lang.Enum<Experiment.ExperimentState>
-
- jasima.core.experiment.Experiment.ExperimentState
-
- All Implemented Interfaces:
Serializable,Comparable<Experiment.ExperimentState>
- Enclosing class:
- Experiment
public static enum Experiment.ExperimentState extends Enum<Experiment.ExperimentState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABOUT_TO_STARTERRORFINISHEDINITIALRUNNING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Experiment.ExperimentStatevalueOf(String name)Returns the enum constant of this type with the specified name.static Experiment.ExperimentState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INITIAL
public static final Experiment.ExperimentState INITIAL
-
ABOUT_TO_START
public static final Experiment.ExperimentState ABOUT_TO_START
-
RUNNING
public static final Experiment.ExperimentState RUNNING
-
FINISHED
public static final Experiment.ExperimentState FINISHED
-
ERROR
public static final Experiment.ExperimentState ERROR
-
-
Method Detail
-
values
public static Experiment.ExperimentState[] 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 (Experiment.ExperimentState c : Experiment.ExperimentState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Experiment.ExperimentState 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
-
-