public static enum RollingUpdateResponse.Status extends Enum<RollingUpdateResponse.Status>
| Enum Constant and Description |
|---|
DEPLOYMENT_GROUP_NOT_FOUND |
JOB_NOT_FOUND |
OK |
| Modifier and Type | Method and Description |
|---|---|
static RollingUpdateResponse.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RollingUpdateResponse.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RollingUpdateResponse.Status OK
public static final RollingUpdateResponse.Status JOB_NOT_FOUND
public static final RollingUpdateResponse.Status DEPLOYMENT_GROUP_NOT_FOUND
public static RollingUpdateResponse.Status[] values()
for (RollingUpdateResponse.Status c : RollingUpdateResponse.Status.values()) System.out.println(c);
public static RollingUpdateResponse.Status 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 © 2019. All rights reserved.