BlobRestoreProgressStatus Class

public final class BlobRestoreProgressStatus
extends ExpandableStringEnum<BlobRestoreProgressStatus>

The status of blob restore progress. Possible values are: - InProgress: Indicates that blob restore is ongoing. - Complete: Indicates that blob restore has been completed successfully. - Failed: Indicates that blob restore is failed.

Field Summary

Modifier and Type Field and Description
static final BlobRestoreProgressStatus COMPLETE

Static value Complete for BlobRestoreProgressStatus.

static final BlobRestoreProgressStatus FAILED

Static value Failed for BlobRestoreProgressStatus.

static final BlobRestoreProgressStatus IN_PROGRESS

Static value InProgress for BlobRestoreProgressStatus.

Constructor Summary

Constructor Description
BlobRestoreProgressStatus()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of BlobRestoreProgressStatus value.

Method Summary

Modifier and Type Method and Description
static BlobRestoreProgressStatus fromString(String name)

Creates or finds a BlobRestoreProgressStatus from its string representation.

static Collection<BlobRestoreProgressStatus> values()

Gets known BlobRestoreProgressStatus values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

COMPLETE

public static final BlobRestoreProgressStatus COMPLETE

Static value Complete for BlobRestoreProgressStatus.

FAILED

public static final BlobRestoreProgressStatus FAILED

Static value Failed for BlobRestoreProgressStatus.

IN_PROGRESS

public static final BlobRestoreProgressStatus IN_PROGRESS

Static value InProgress for BlobRestoreProgressStatus.

Constructor Details

BlobRestoreProgressStatus

@Deprecated
public BlobRestoreProgressStatus()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of BlobRestoreProgressStatus value.

Method Details

fromString

public static BlobRestoreProgressStatus fromString(String name)

Creates or finds a BlobRestoreProgressStatus from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding BlobRestoreProgressStatus.

values

public static Collection values()

Gets known BlobRestoreProgressStatus values.

Returns:

known BlobRestoreProgressStatus values.

Applies to