- All Implemented Interfaces:
- Serializable,- Comparable<ProcessState>,- java.lang.constant.Constable
An enumeration of the values possible in the
 
ProcessStep.currentState attribute. This enumeration
 isn't actually an enumeration in the XML schemas, but it has
 a finite set of possible values and it's easier to work with
 an enumeration in Java code than just a string.- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionThe step state when the step is in the stage where barcodes are attached to the samples.The step state when the step is complete.The step state when the step is in the next steps stage.The step state when the step is in the sample placement stage.The step state when the step is in the pooling stage.The step state when the step is in the record details stage.The step state when the step is in the sample placement stage.
- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptionstatic ProcessStateGet the process state that has the given display name.toString()value()static ProcessStateReturns the enum constant of this type with the specified name.static ProcessState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
STARTEDThe step state when the step is in the sample placement stage.
- 
PLACEMENTThe step state when the step is in the sample placement stage.
- 
ADD_REAGENTThe step state when the step is in the stage where barcodes are attached to the samples.
- 
POOLINGThe step state when the step is in the pooling stage.
- 
RECORD_DETAILSThe step state when the step is in the record details stage.
- 
NEXT_STEPSThe step state when the step is in the next steps stage.
- 
COMPLETEDThe step state when the step is complete.
 
- 
- 
Field Details- 
displayNameThe display name of the state.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
toString- Overrides:
- toStringin class- Enum<ProcessState>
 
- 
value
- 
fromValueGet the process state that has the given display name.- Parameters:
- str- The display name, as returned from Clarity calls.
- Returns:
- The matching process state, or null if stris null.
- Throws:
- IllegalArgumentException- if- strdoes not match the display name of a state.
 
 
-