public static enum InternalProvider.LifecycleEvent extends Enum<InternalProvider.LifecycleEvent>
Enum Constant and Description |
---|
CREATE
Called on create.
|
DISPOSE
Called on disposal.
|
INIT
Called on initialization.
|
REMOVE
Called when removed.
|
Modifier and Type | Method and Description |
---|---|
static InternalProvider.LifecycleEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InternalProvider.LifecycleEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InternalProvider.LifecycleEvent CREATE
public static final InternalProvider.LifecycleEvent INIT
public static final InternalProvider.LifecycleEvent DISPOSE
public static final InternalProvider.LifecycleEvent REMOVE
public static InternalProvider.LifecycleEvent[] values()
for (InternalProvider.LifecycleEvent c : InternalProvider.LifecycleEvent.values()) System.out.println(c);
public static InternalProvider.LifecycleEvent 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 © 2017. All rights reserved.