public static enum LifecycleEvent.STATE extends Enum<LifecycleEvent.STATE>
| Enum Constant and Description |
|---|
AFTER_START_EVENT |
AFTER_STOP_EVENT |
AFTER_UPDATE_EVENT |
BEFORE_START_EVENT |
BEFORE_STOP_EVENT |
BEFORE_UPDATE_EVENT |
| Modifier and Type | Method and Description |
|---|---|
static LifecycleEvent.STATE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LifecycleEvent.STATE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifecycleEvent.STATE BEFORE_START_EVENT
public static final LifecycleEvent.STATE AFTER_START_EVENT
public static final LifecycleEvent.STATE BEFORE_UPDATE_EVENT
public static final LifecycleEvent.STATE AFTER_UPDATE_EVENT
public static final LifecycleEvent.STATE BEFORE_STOP_EVENT
public static final LifecycleEvent.STATE AFTER_STOP_EVENT
public static LifecycleEvent.STATE[] values()
for (LifecycleEvent.STATE c : LifecycleEvent.STATE.values()) System.out.println(c);
public static LifecycleEvent.STATE 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 © 2019 WSO2. All rights reserved.