Enum BackupItemStatus

    • Enum Constant Detail

      • IN_PROGRESS

        public static final BackupItemStatus IN_PROGRESS
        Enum value InProgress.
      • SUCCEEDED

        public static final BackupItemStatus SUCCEEDED
        Enum value Succeeded.
      • TIMED_OUT

        public static final BackupItemStatus TIMED_OUT
        Enum value TimedOut.
      • PARTIALLY_SUCCEEDED

        public static final BackupItemStatus PARTIALLY_SUCCEEDED
        Enum value PartiallySucceeded.
      • DELETE_IN_PROGRESS

        public static final BackupItemStatus DELETE_IN_PROGRESS
        Enum value DeleteInProgress.
      • DELETE_FAILED

        public static final BackupItemStatus DELETE_FAILED
        Enum value DeleteFailed.
    • Method Detail

      • values

        public static BackupItemStatus[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (BackupItemStatus c : BackupItemStatus.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static BackupItemStatus 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 BackupItemStatus fromString​(String value)
        Parses a serialized value to a BackupItemStatus instance.
        Parameters:
        value - the serialized value to parse.
        Returns:
        the parsed BackupItemStatus object, or null if unable to parse.