public enum ActionStage extends Enum<ActionStage>
| Enum Constant and Description |
|---|
POSTVALIDATE |
PREACTIVATE |
PRECONSTRUCT |
PREVALIDATE |
| Modifier and Type | Method and Description |
|---|---|
static ActionStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionStage PRECONSTRUCT
public static final ActionStage PREACTIVATE
public static final ActionStage PREVALIDATE
public static final ActionStage POSTVALIDATE
public static ActionStage[] values()
for (ActionStage c : ActionStage.values()) System.out.println(c);
public static ActionStage 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 © 2001–2025. All rights reserved.