Enum Class TriggerType

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

public enum TriggerType extends Enum<TriggerType>
Enumeration of EPP trigger types.
  • Enum Constant Details

    • MANUAL

      public static final TriggerType MANUAL
      Manual trigger that must be invoked by a user.
    • AUTOMATIC

      public static final TriggerType AUTOMATIC
      Automatic trigger that executes automatically.
    • UNUSED

      public static final TriggerType UNUSED
      Unused trigger.
  • Method Details

    • values

      public static TriggerType[] 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 TriggerType 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 TriggerType fromValue(String v)
      Converts a string value to a TriggerType enum constant.
      Parameters:
      v - The string value.
      Returns:
      The corresponding TriggerType enum constant.