Enum JobStateEnum

java.lang.Object
java.lang.Enum<JobStateEnum>
io.camunda.client.protocol.rest.JobStateEnum
All Implemented Interfaces:
Serializable, Comparable<JobStateEnum>, java.lang.constant.Constable

public enum JobStateEnum extends Enum<JobStateEnum>
The state of the job.
  • Enum Constant Details

    • CANCELED

      public static final JobStateEnum CANCELED
    • COMPLETED

      public static final JobStateEnum COMPLETED
    • CREATED

      public static final JobStateEnum CREATED
    • ERROR_THROWN

      public static final JobStateEnum ERROR_THROWN
    • FAILED

      public static final JobStateEnum FAILED
    • MIGRATED

      public static final JobStateEnum MIGRATED
    • PRIORITY_UPDATED

      public static final JobStateEnum PRIORITY_UPDATED
    • RETRIES_UPDATED

      public static final JobStateEnum RETRIES_UPDATED
    • TIMEOUT_UPDATED

      public static final JobStateEnum TIMEOUT_UPDATED
    • TIMED_OUT

      public static final JobStateEnum TIMED_OUT
    • UNKNOWN_DEFAULT_OPEN_API

      public static final JobStateEnum UNKNOWN_DEFAULT_OPEN_API
  • Method Details

    • values

      public static JobStateEnum[] values()
      Returns 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
    • valueOf

      public static JobStateEnum valueOf(String name)
      Returns 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
    • getValue

      public String getValue()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<JobStateEnum>
    • fromValue

      public static JobStateEnum fromValue(String value)