public static enum PanelAction.ActionStage extends Enum<PanelAction.ActionStage>
| Enum Constant and Description |
|---|
postvalidate |
preactivate |
preconstruct |
prevalidate |
| Modifier and Type | Method and Description |
|---|---|
static PanelAction.ActionStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PanelAction.ActionStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PanelAction.ActionStage preconstruct
public static final PanelAction.ActionStage preactivate
public static final PanelAction.ActionStage prevalidate
public static final PanelAction.ActionStage postvalidate
public static PanelAction.ActionStage[] values()
for (PanelAction.ActionStage c : PanelAction.ActionStage.values()) System.out.println(c);
public static PanelAction.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.