Enum Class TriggerStatus

java.lang.Object
java.lang.Enum<TriggerStatus>
com.genologics.ri.processtype.TriggerStatus
All Implemented Interfaces:
Serializable, Comparable<TriggerStatus>, Constable

public enum TriggerStatus extends Enum<TriggerStatus>
The trigger-status enumeration lists the possible values of the EPP Trigger status attribute.
Since:
2.25
  • Enum Constant Details

    • STARTED

      public static final TriggerStatus STARTED
      The step has been started.
    • STEP_SETUP

      public static final TriggerStatus STEP_SETUP
      The step is in the setup phase.
    • POOLING

      public static final TriggerStatus POOLING
      The step is in the pooling phase.
    • PLACEMENT

      public static final TriggerStatus PLACEMENT
      The step is in the placement phase.
    • ADD_REAGENT

      public static final TriggerStatus ADD_REAGENT
      The step is in the add reagent phase.
    • RECORD_DETAILS

      public static final TriggerStatus RECORD_DETAILS
      The step is in the record details phase.
    • COMPLETE

      public static final TriggerStatus COMPLETE
      The step has been completed.
  • Method Details

    • values

      public static TriggerStatus[] 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

      public static TriggerStatus valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • value

      public String value()
      Gets the XML value of this trigger status.
      Returns:
      the XML value (the enum name).
    • fromValue

      public static TriggerStatus fromValue(String v)
      Gets the trigger status corresponding to the specified XML value.
      Parameters:
      v - the XML value.
      Returns:
      the corresponding trigger status.