PatchApplyStatus Class

public final class PatchApplyStatus
extends ExpandableStringEnum<PatchApplyStatus>

The status of the patch once it has been provisioned.

Field Summary

Modifier and Type Field and Description
static final PatchApplyStatus CANCELED

Static value Canceled for PatchApplyStatus.

static final PatchApplyStatus CREATING_REVISION

Static value CreatingRevision for PatchApplyStatus.

static final PatchApplyStatus IMAGE_PUSH_PULL_FAILED

Static value ImagePushPullFailed for PatchApplyStatus.

static final PatchApplyStatus MANUALLY_SKIPPED

Static value ManuallySkipped for PatchApplyStatus.

static final PatchApplyStatus NOT_STARTED

Static value NotStarted for PatchApplyStatus.

static final PatchApplyStatus REBASE_FAILED

Static value RebaseFailed for PatchApplyStatus.

static final PatchApplyStatus REBASE_IN_PROGRESS

Static value RebaseInProgress for PatchApplyStatus.

static final PatchApplyStatus REVISION_CREATION_FAILED

Static value RevisionCreationFailed for PatchApplyStatus.

static final PatchApplyStatus SUCCEEDED

Static value Succeeded for PatchApplyStatus.

Constructor Summary

Constructor Description
PatchApplyStatus()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of PatchApplyStatus value.

Method Summary

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

Creates or finds a PatchApplyStatus from its string representation.

static Collection<PatchApplyStatus> values()

Gets known PatchApplyStatus values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

CANCELED

public static final PatchApplyStatus CANCELED

Static value Canceled for PatchApplyStatus.

CREATING_REVISION

public static final PatchApplyStatus CREATING_REVISION

Static value CreatingRevision for PatchApplyStatus.

IMAGE_PUSH_PULL_FAILED

public static final PatchApplyStatus IMAGE_PUSH_PULL_FAILED

Static value ImagePushPullFailed for PatchApplyStatus.

MANUALLY_SKIPPED

public static final PatchApplyStatus MANUALLY_SKIPPED

Static value ManuallySkipped for PatchApplyStatus.

NOT_STARTED

public static final PatchApplyStatus NOT_STARTED

Static value NotStarted for PatchApplyStatus.

REBASE_FAILED

public static final PatchApplyStatus REBASE_FAILED

Static value RebaseFailed for PatchApplyStatus.

REBASE_IN_PROGRESS

public static final PatchApplyStatus REBASE_IN_PROGRESS

Static value RebaseInProgress for PatchApplyStatus.

REVISION_CREATION_FAILED

public static final PatchApplyStatus REVISION_CREATION_FAILED

Static value RevisionCreationFailed for PatchApplyStatus.

SUCCEEDED

public static final PatchApplyStatus SUCCEEDED

Static value Succeeded for PatchApplyStatus.

Constructor Details

PatchApplyStatus

@Deprecated
public PatchApplyStatus()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of PatchApplyStatus value.

Method Details

fromString

public static PatchApplyStatus fromString(String name)

Creates or finds a PatchApplyStatus from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding PatchApplyStatus.

values

public static Collection<PatchApplyStatus> values()

Gets known PatchApplyStatus values.

Returns:

known PatchApplyStatus values.

Applies to