DeploymentStatus Class

public final class DeploymentStatus
extends ExpandableStringEnum<DeploymentStatus>

Deployment Status.

Field Summary

Modifier and Type Field and Description
static final DeploymentStatus DEPLOYED

Deployed.

static final DeploymentStatus DEPLOYING

Deploying.

static final DeploymentStatus FAILED

Failed.

static final DeploymentStatus NOT_STARTED

NotStarted.

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

Deployed.

DEPLOYING

public static final DeploymentStatus DEPLOYING

Deploying.

FAILED

public static final DeploymentStatus FAILED

Failed.

NOT_STARTED

public static final DeploymentStatus NOT_STARTED

NotStarted.

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<DeploymentStatus> values()

Gets known DeploymentStatus values.

Returns:

known DeploymentStatus values.

Applies to