Enum CopyStatus

java.lang.Object
java.lang.Enum<CopyStatus>
com.azure.resourcemanager.databox.models.CopyStatus
All Implemented Interfaces:
Serializable, Comparable<CopyStatus>, java.lang.constant.Constable

public enum CopyStatus extends Enum<CopyStatus>
The Status of the copy.
  • Enum Constant Details

    • NOT_STARTED

      public static final CopyStatus NOT_STARTED
      Enum value NotStarted.
    • IN_PROGRESS

      public static final CopyStatus IN_PROGRESS
      Enum value InProgress.
    • COMPLETED

      public static final CopyStatus COMPLETED
      Enum value Completed.
    • COMPLETED_WITH_ERRORS

      public static final CopyStatus COMPLETED_WITH_ERRORS
      Enum value CompletedWithErrors.
    • FAILED

      public static final CopyStatus FAILED
      Enum value Failed.
    • NOT_RETURNED

      public static final CopyStatus NOT_RETURNED
      Enum value NotReturned.
    • HARDWARE_ERROR

      public static final CopyStatus HARDWARE_ERROR
      Enum value HardwareError.
    • DEVICE_FORMATTED

      public static final CopyStatus DEVICE_FORMATTED
      Enum value DeviceFormatted.
    • DEVICE_METADATA_MODIFIED

      public static final CopyStatus DEVICE_METADATA_MODIFIED
      Enum value DeviceMetadataModified.
    • STORAGE_ACCOUNT_NOT_ACCESSIBLE

      public static final CopyStatus STORAGE_ACCOUNT_NOT_ACCESSIBLE
      Enum value StorageAccountNotAccessible.
    • UNSUPPORTED_DATA

      public static final CopyStatus UNSUPPORTED_DATA
      Enum value UnsupportedData.
  • Method Details

    • values

      public static CopyStatus[] 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 CopyStatus 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
    • fromString

      public static CopyStatus fromString(String value)
      Parses a serialized value to a CopyStatus instance.
      Parameters:
      value - the serialized value to parse.
      Returns:
      the parsed CopyStatus object, or null if unable to parse.
    • toString

      public String toString()
      Overrides:
      toString in class Enum<CopyStatus>