public enum AMSchedulerEventType extends Enum<AMSchedulerEventType>
| Enum Constant and Description |
|---|
S_CONTAINER_DEALLOCATE |
S_NODE_BLACKLISTED |
S_NODE_HEALTHY |
S_NODE_UNBLACKLISTED |
S_NODE_UNHEALTHY |
S_TA_ENDED |
S_TA_LAUNCH_REQUEST |
S_TA_STATE_UPDATED |
| Modifier and Type | Method and Description |
|---|---|
static AMSchedulerEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AMSchedulerEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AMSchedulerEventType S_TA_LAUNCH_REQUEST
public static final AMSchedulerEventType S_TA_STATE_UPDATED
public static final AMSchedulerEventType S_TA_ENDED
public static final AMSchedulerEventType S_NODE_BLACKLISTED
public static final AMSchedulerEventType S_NODE_UNBLACKLISTED
public static final AMSchedulerEventType S_NODE_UNHEALTHY
public static final AMSchedulerEventType S_NODE_HEALTHY
public static final AMSchedulerEventType S_CONTAINER_DEALLOCATE
public static AMSchedulerEventType[] values()
for (AMSchedulerEventType c : AMSchedulerEventType.values()) System.out.println(c);
public static AMSchedulerEventType 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 © 2020 Apache Software Foundation. All rights reserved.