public enum DeploymentState extends Enum<DeploymentState>
app.count > 1
Enum Constant and Description |
---|
deployed
All apps have been successfully deployed.
|
deploying
The app or group is being deployed.
|
error
A system error occurred trying to determine deployment status.
|
failed
All apps have failed deployment.
|
partial
In the case of multiple apps, some have successfully deployed, while
others have not.
|
undeployed
The app or group is known to the system, but is not currently deployed.
|
unknown
The app or group deployment is not known to the system.
|
Modifier and Type | Method and Description |
---|---|
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 undeployed
public static final DeploymentState partial
public static final DeploymentState failed
public static final DeploymentState error
public static final DeploymentState unknown
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 nullCopyright © 2022 Pivotal Software, Inc.. All rights reserved.