public enum AMContainerState extends Enum<AMContainerState>
| Enum Constant and Description |
|---|
ALLOCATED |
COMPLETED |
IDLE |
LAUNCHING |
RUNNING |
STOP_REQUESTED |
STOPPING |
| Modifier and Type | Method and Description |
|---|---|
static AMContainerState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AMContainerState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AMContainerState ALLOCATED
public static final AMContainerState LAUNCHING
public static final AMContainerState IDLE
public static final AMContainerState RUNNING
public static final AMContainerState STOP_REQUESTED
public static final AMContainerState STOPPING
public static final AMContainerState COMPLETED
public static AMContainerState[] values()
for (AMContainerState c : AMContainerState.values()) System.out.println(c);
public static AMContainerState 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 Apache Software Foundation. All rights reserved.