Package org.azd.enums

Enum Class OperationStatus

java.lang.Object
java.lang.Enum<OperationStatus>
org.azd.enums.OperationStatus
All Implemented Interfaces:
Serializable, Comparable<OperationStatus>, Constable

public enum OperationStatus extends Enum<OperationStatus>
The current status of the operation.
  • Enum Constant Details

    • CANCELLED

      public static final OperationStatus CANCELLED
      The operation was cancelled by the user.
    • FAILED

      public static final OperationStatus FAILED
      The operation completed with a failure.
    • INPROGRESS

      public static final OperationStatus INPROGRESS
      The operation is in progress.
    • NOTSET

      public static final OperationStatus NOTSET
      The operation does not have a status set.
    • QUEUED

      public static final OperationStatus QUEUED
      The operation has been queued.
    • SUCCEEDED

      public static final OperationStatus SUCCEEDED
      The operation completed successfully.
  • Method Details

    • values

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