public enum DeploymentStatusValue extends Enum<DeploymentStatusValue>
Deployment| Enum Constant and Description |
|---|
ACTIVE
The active status value
|
CANCELING
The canceling status value
|
DEPLOYING
The deploying status value
|
FINALIZED
The finalized status value
|
| Modifier and Type | Method and Description |
|---|---|
static DeploymentStatusValue |
from(String s) |
String |
getValue() |
String |
toString() |
static DeploymentStatusValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentStatusValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentStatusValue ACTIVE
public static final DeploymentStatusValue CANCELING
public static final DeploymentStatusValue DEPLOYING
public static final DeploymentStatusValue FINALIZED
public static DeploymentStatusValue[] values()
for (DeploymentStatusValue c : DeploymentStatusValue.values()) System.out.println(c);
public static DeploymentStatusValue valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static DeploymentStatusValue from(String s)
public String getValue()
public String toString()
toString in class Enum<DeploymentStatusValue>Copyright © 2020. All rights reserved.