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