Enum Class OperationName

java.lang.Object
java.lang.Enum<OperationName>
org.apache.camel.component.zeebe.internal.OperationName
All Implemented Interfaces:
Serializable, Comparable<OperationName>, Constable

public enum OperationName extends Enum<OperationName>
  • Enum Constant Details

    • START_PROCESS

      public static final OperationName START_PROCESS
    • CANCEL_PROCESS

      public static final OperationName CANCEL_PROCESS
    • PUBLISH_MESSAGE

      public static final OperationName PUBLISH_MESSAGE
    • COMPLETE_JOB

      public static final OperationName COMPLETE_JOB
    • FAIL_JOB

      public static final OperationName FAIL_JOB
    • UPDATE_JOB_RETRIES

      public static final OperationName UPDATE_JOB_RETRIES
    • REGISTER_JOB_WORKER

      public static final OperationName REGISTER_JOB_WORKER
    • THROW_ERROR

      public static final OperationName THROW_ERROR
    • DEPLOY_RESOURCE

      public static final OperationName DEPLOY_RESOURCE
  • Method Details

    • values

      public static OperationName[] 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 OperationName 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()
    • fromValue

      public static OperationName fromValue(String value)