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