Package controllers.publix.workers
Enum JatosPublix.JatosRun
- java.lang.Object
-
- java.lang.Enum<JatosPublix.JatosRun>
-
- controllers.publix.workers.JatosPublix.JatosRun
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<JatosPublix.JatosRun>
- Enclosing class:
- JatosPublix
public static enum JatosPublix.JatosRun extends java.lang.Enum<JatosPublix.JatosRun>
Distinguish between study run and component run. In case of an component run additionally distinguish between the start or whether it is already finished.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description RUN_COMPONENT_FINISHEDRUN_COMPONENT_STARTRUN_STUDY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JatosPublix.JatosRunvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JatosPublix.JatosRun[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RUN_STUDY
public static final JatosPublix.JatosRun RUN_STUDY
-
RUN_COMPONENT_START
public static final JatosPublix.JatosRun RUN_COMPONENT_START
-
RUN_COMPONENT_FINISHED
public static final JatosPublix.JatosRun RUN_COMPONENT_FINISHED
-
-
Method Detail
-
values
public static JatosPublix.JatosRun[] 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 (JatosPublix.JatosRun c : JatosPublix.JatosRun.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JatosPublix.JatosRun valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-