public enum LifeCyclePhase extends Enum<LifeCyclePhase>
| Modifier and Type | Method and Description |
|---|---|
static LifeCyclePhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LifeCyclePhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifeCyclePhase ACTION
public static final LifeCyclePhase EVENT
public static final LifeCyclePhase RENDER
public static final LifeCyclePhase RESOURCE
public static LifeCyclePhase[] values()
for (LifeCyclePhase c : LifeCyclePhase.values()) System.out.println(c);
public static LifeCyclePhase 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-2016 GateIn. All Rights Reserved.