Enum UserTaskState

java.lang.Object
java.lang.Enum<UserTaskState>
io.camunda.client.api.search.enums.UserTaskState
All Implemented Interfaces:
Serializable, Comparable<UserTaskState>, java.lang.constant.Constable

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

    • CREATING

      public static final UserTaskState CREATING
    • CREATED

      public static final UserTaskState CREATED
    • ASSIGNING

      public static final UserTaskState ASSIGNING
    • UPDATING

      public static final UserTaskState UPDATING
    • COMPLETING

      public static final UserTaskState COMPLETING
    • COMPLETED

      public static final UserTaskState COMPLETED
    • CANCELING

      public static final UserTaskState CANCELING
    • CANCELED

      public static final UserTaskState CANCELED
    • FAILED

      public static final UserTaskState FAILED
      The FAILED state is only applicable to legacy, job-worker-based user tasks. Native Camunda User Tasks (non-job-worker-based) do not reach this state.
    • UNKNOWN_ENUM_VALUE

      public static final UserTaskState UNKNOWN_ENUM_VALUE
  • Method Details

    • values

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