Enum Class UserActionState.Status

java.lang.Object
java.lang.Enum<UserActionState.Status>
com.mayam.wf.ws.rest.domain.UserActionState.Status
All Implemented Interfaces:
Serializable, Comparable<UserActionState.Status>, Constable
Enclosing class:
UserActionState

public static enum UserActionState.Status extends Enum<UserActionState.Status>
  • Enum Constant Details

    • IDLE

      public static final UserActionState.Status IDLE
      No action currently associated with user.
    • IMMINENT

      public static final UserActionState.Status IMMINENT
      Performing minor operations expected to finish soon (client should check back soon).
    • PENDING_UI

      public static final UserActionState.Status PENDING_UI
      Pending UI operation (client will be presented with instructions; server waits for results).
    • SERVER_PROCESSING

      public static final UserActionState.Status SERVER_PROCESSING
      Server is currently processing parts of the work order.
    • FINISHED

      public static final UserActionState.Status FINISHED
      Processing done. Waiting for client to acknowledge (or possibly just be notified).
    • CANCELLED

      public static final UserActionState.Status CANCELLED
      Cancelled.
  • Method Details

    • values

      public static UserActionState.Status[] 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 UserActionState.Status 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