public enum DeploymentState extends Enum<DeploymentState>
Deployment| Enum Constant and Description |
|---|
CANCELED
The canceled state
|
CANCELING
The canceling state
|
DEPLOYED
The deployed state
|
DEPLOYING
The deploying state
|
| Modifier and Type | Method and Description |
|---|---|
static DeploymentState |
from(String s) |
String |
getValue() |
String |
toString() |
static DeploymentState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentState DEPLOYING
public static final DeploymentState DEPLOYED
public static final DeploymentState CANCELING
public static final DeploymentState CANCELED
public static DeploymentState[] values()
for (DeploymentState c : DeploymentState.values()) System.out.println(c);
public static DeploymentState 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 DeploymentState from(String s)
public String getValue()
public String toString()
toString in class Enum<DeploymentState>Copyright © 2020. All rights reserved.