public enum SchedulerEventType extends Enum<SchedulerEventType>
Enum Constant and Description |
---|
APP_ADDED |
APP_REMOVED |
CONTAINER_EXPIRED |
NODE_ADDED |
NODE_REMOVED |
NODE_UPDATE |
Modifier and Type | Method and Description |
---|---|
static SchedulerEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchedulerEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchedulerEventType NODE_ADDED
public static final SchedulerEventType NODE_REMOVED
public static final SchedulerEventType NODE_UPDATE
public static final SchedulerEventType APP_ADDED
public static final SchedulerEventType APP_REMOVED
public static final SchedulerEventType CONTAINER_EXPIRED
public static SchedulerEventType[] values()
for (SchedulerEventType c : SchedulerEventType.values()) System.out.println(c);
public static SchedulerEventType 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 © 2013 Apache Software Foundation. All rights reserved.