public static enum LifecycleManager.ShutdownOrder extends Enum<LifecycleManager.ShutdownOrder>
Lifecycles are shutdown.| Enum Constant and Description |
|---|
INVERSE
Lifecycles are shutdown in the reverse order they were added.
|
LINEAR
Lifecycles are shutdown in the same order they were added.
|
| Modifier and Type | Method and Description |
|---|---|
static LifecycleManager.ShutdownOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LifecycleManager.ShutdownOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifecycleManager.ShutdownOrder LINEAR
public static final LifecycleManager.ShutdownOrder INVERSE
public static LifecycleManager.ShutdownOrder[] values()
for (LifecycleManager.ShutdownOrder c : LifecycleManager.ShutdownOrder.values()) System.out.println(c);
public static LifecycleManager.ShutdownOrder 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 © 2021. All rights reserved.