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