DeploymentStatus Class

public final class DeploymentStatus
extends ExpandableStringEnum<DeploymentStatus>

Deployment Status.

Field Summary

Modifier and Type Field and Description
static final DeploymentStatus DEPLOYED

Static value Deployed for DeploymentStatus.

static final DeploymentStatus DEPLOYING

Static value Deploying for DeploymentStatus.

static final DeploymentStatus FAILED

Static value Failed for DeploymentStatus.

static final DeploymentStatus NOT_STARTED

Static value NotStarted for DeploymentStatus.

Constructor Summary

Constructor Description
DeploymentStatus()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of DeploymentStatus value.

Method Summary

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

Creates or finds a DeploymentStatus from its string representation.

static Collection<DeploymentStatus> values()

Gets known DeploymentStatus values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

DEPLOYED

public static final DeploymentStatus DEPLOYED

Static value Deployed for DeploymentStatus.

DEPLOYING

public static final DeploymentStatus DEPLOYING

Static value Deploying for DeploymentStatus.

FAILED

public static final DeploymentStatus FAILED

Static value Failed for DeploymentStatus.

NOT_STARTED

public static final DeploymentStatus NOT_STARTED

Static value NotStarted for DeploymentStatus.

Constructor Details

DeploymentStatus

@Deprecated
public DeploymentStatus()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of DeploymentStatus value.

Method Details

fromString

public static DeploymentStatus fromString(String name)

Creates or finds a DeploymentStatus from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding DeploymentStatus.

values

public static Collection values()

Gets known DeploymentStatus values.

Returns:

known DeploymentStatus values.

Applies to