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