Enum Class TriggerStatus

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

public enum TriggerStatus extends Enum<TriggerStatus>
Enumeration of step statuses at which EPP triggers can execute.
  • Enum Constant Details

    • STARTED

      public static final TriggerStatus STARTED
      Trigger executes when the step is started.
    • STEP_SETUP

      public static final TriggerStatus STEP_SETUP
      Trigger executes during step setup.
    • POOLING

      public static final TriggerStatus POOLING
      Trigger executes during pooling.
    • PLACEMENT

      public static final TriggerStatus PLACEMENT
      Trigger executes during placement.
    • ADD_REAGENT

      public static final TriggerStatus ADD_REAGENT
      Trigger executes when adding reagents.
    • RECORD_DETAILS

      public static final TriggerStatus RECORD_DETAILS
      Trigger executes when recording details.
    • COMPLETE

      public static final TriggerStatus COMPLETE
      Trigger executes when the step is 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 value of this enum constant.
      Returns:
      The name of this enum constant.
    • fromValue

      public static TriggerStatus fromValue(String v)
      Converts a string value to a TriggerStatus enum constant.
      Parameters:
      v - The string value.
      Returns:
      The corresponding TriggerStatus enum constant.