public enum ContainersLauncherEventType extends Enum<ContainersLauncherEventType>
| Enum Constant and Description | 
|---|
| CLEANUP_CONTAINER | 
| CLEANUP_CONTAINER_FOR_REINIT | 
| LAUNCH_CONTAINER | 
| PAUSE_CONTAINER | 
| RECOVER_CONTAINER | 
| RECOVER_PAUSED_CONTAINER | 
| RELAUNCH_CONTAINER | 
| RESUME_CONTAINER | 
| SIGNAL_CONTAINER | 
| Modifier and Type | Method and Description | 
|---|---|
| static ContainersLauncherEventType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ContainersLauncherEventType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ContainersLauncherEventType LAUNCH_CONTAINER
public static final ContainersLauncherEventType RELAUNCH_CONTAINER
public static final ContainersLauncherEventType RECOVER_CONTAINER
public static final ContainersLauncherEventType CLEANUP_CONTAINER
public static final ContainersLauncherEventType CLEANUP_CONTAINER_FOR_REINIT
public static final ContainersLauncherEventType SIGNAL_CONTAINER
public static final ContainersLauncherEventType PAUSE_CONTAINER
public static final ContainersLauncherEventType RESUME_CONTAINER
public static final ContainersLauncherEventType RECOVER_PAUSED_CONTAINER
public static ContainersLauncherEventType[] values()
for (ContainersLauncherEventType c : ContainersLauncherEventType.values()) System.out.println(c);
public static ContainersLauncherEventType 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 © 2008–2023 Apache Software Foundation. All rights reserved.