public static enum ContainerPlacementMessage.StatusCode extends java.lang.Enum<ContainerPlacementMessage.StatusCode>
Enum Constant and Description |
---|
ACCEPTED
Indicates that the container placement action is accepted and waiting to be processed
|
BAD_REQUEST
Indicates that the container placement action was rejected because request was deemed invalid
|
CREATED
Indicates that the container placement action is created
|
FAILED
Indicates that the container placement action is in failed
|
IN_PROGRESS
Indicates that the container placement action is in progress
|
SUCCEEDED
Indicates that the container placement action is in progress
|
Modifier and Type | Method and Description |
---|---|
static ContainerPlacementMessage.StatusCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContainerPlacementMessage.StatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerPlacementMessage.StatusCode CREATED
public static final ContainerPlacementMessage.StatusCode BAD_REQUEST
public static final ContainerPlacementMessage.StatusCode ACCEPTED
public static final ContainerPlacementMessage.StatusCode IN_PROGRESS
public static final ContainerPlacementMessage.StatusCode SUCCEEDED
public static final ContainerPlacementMessage.StatusCode FAILED
public static ContainerPlacementMessage.StatusCode[] values()
for (ContainerPlacementMessage.StatusCode c : ContainerPlacementMessage.StatusCode.values()) System.out.println(c);
public static ContainerPlacementMessage.StatusCode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null