public enum PhaseIdType extends Enum<PhaseIdType>
| Enum Constant and Description |
|---|
ANY_PHASE |
APPLY_REQUEST_VALUES |
INVOKE_APPLICATION |
PROCESS_VALIDATIONS |
RENDER_RESPONSE |
RESTORE_VIEW |
UPDATE_MODEL_VALUES |
| Modifier and Type | Method and Description |
|---|---|
static PhaseIdType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PhaseIdType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhaseIdType ANY_PHASE
public static final PhaseIdType RESTORE_VIEW
public static final PhaseIdType APPLY_REQUEST_VALUES
public static final PhaseIdType PROCESS_VALIDATIONS
public static final PhaseIdType UPDATE_MODEL_VALUES
public static final PhaseIdType INVOKE_APPLICATION
public static final PhaseIdType RENDER_RESPONSE
public static PhaseIdType[] values()
for (PhaseIdType c : PhaseIdType.values()) System.out.println(c);
public static PhaseIdType 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 © 2009-2013 Seam Framework. All Rights Reserved.