- All Implemented Interfaces:
Serializable,Comparable<TriggerStatus>,Constable
The trigger-status enumeration lists the possible values of the EPP Trigger status attribute.
- Since:
- 2.25
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe step is in the add reagent phase.The step has been completed.The step is in the placement phase.The step is in the pooling phase.The step is in the record details phase.The step has been started.The step is in the setup phase. -
Method Summary
Modifier and TypeMethodDescriptionstatic TriggerStatusGets the trigger status corresponding to the specified XML value.value()Gets the XML value of this trigger status.static TriggerStatusReturns the enum constant of this class with the specified name.static TriggerStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STARTED
The step has been started. -
STEP_SETUP
The step is in the setup phase. -
POOLING
The step is in the pooling phase. -
PLACEMENT
The step is in the placement phase. -
ADD_REAGENT
The step is in the add reagent phase. -
RECORD_DETAILS
The step is in the record details phase. -
COMPLETE
The step has been completed.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
value
Gets the XML value of this trigger status.- Returns:
- the XML value (the enum name).
-
fromValue
Gets the trigger status corresponding to the specified XML value.- Parameters:
v- the XML value.- Returns:
- the corresponding trigger status.
-