public enum LifecycleAction extends Enum<LifecycleAction>
| Enum Constant and Description |
|---|
DISPOSE |
GET_OBJECT |
INITIALISE |
START |
STOP |
| Modifier and Type | Method and Description |
|---|---|
static LifecycleAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LifecycleAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifecycleAction GET_OBJECT
public static final LifecycleAction INITIALISE
public static final LifecycleAction START
public static final LifecycleAction STOP
public static final LifecycleAction DISPOSE
public static LifecycleAction[] values()
for (LifecycleAction c : LifecycleAction.values()) System.out.println(c);
public static LifecycleAction 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 © 2003–2024 MuleSoft, Inc.. All rights reserved.