public static enum Container.ContainerState extends Enum<Container.ContainerState>
| Enum Constant and Description |
|---|
CREATED |
FAILED |
STARTED |
STARTING |
STOPPED |
STOPPING |
| Modifier and Type | Method and Description |
|---|---|
static Container.ContainerState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Container.ContainerState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Container.ContainerState CREATED
public static final Container.ContainerState STARTING
public static final Container.ContainerState STARTED
public static final Container.ContainerState STOPPING
public static final Container.ContainerState STOPPED
public static final Container.ContainerState FAILED
public static Container.ContainerState[] values()
for (Container.ContainerState c : Container.ContainerState.values()) System.out.println(c);
public static Container.ContainerState 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 © 2016 Electronic Arts Inc. All rights reserved.