public enum Phase extends java.lang.Enum<Phase>
COMMAND
: do a commandVALIDATE
: do validate before a command or zk eventSAVE_BEFORE
: do save bindings before executing a commandLOAD_BEFORE
: do load bindings before executing a commandEXECUTE
: execute a commandSAVE_AFTER
: do save bindings after executing a commandLOAD_AFTER
: do load bindings after executing a commandSAVE_BINDING
: do a save bindingLOAD_BINDING
: do a load bindingGLOBAL_COMMAND
: do a global commandEXECUTE
: execute a commandEnum Constant and Description |
---|
COMMAND
command phase.
|
EXECUTE
command execution phase.
|
GLOBAL_COMMAND
global command phase.
|
INITIAL_BINDING
initial binding phase
|
LOAD_AFTER
load after command phase.
|
LOAD_BEFORE
load before command phase.
|
LOAD_BINDING
load binding phase.
|
SAVE_AFTER
save after command phase.
|
SAVE_BEFORE
save before command phase.
|
SAVE_BINDING
save binding phase.
|
VALIDATE
validate phase.
|
Modifier and Type | Method and Description |
---|---|
static Phase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Phase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Phase COMMAND
public static final Phase GLOBAL_COMMAND
public static final Phase VALIDATE
public static final Phase SAVE_BEFORE
public static final Phase LOAD_BEFORE
public static final Phase EXECUTE
public static final Phase SAVE_AFTER
public static final Phase LOAD_AFTER
public static final Phase SAVE_BINDING
public static final Phase LOAD_BINDING
public static final Phase INITIAL_BINDING
public static Phase[] values()
for (Phase c : Phase.values()) System.out.println(c);
public static Phase valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2005-2021 Potix Corporation. All Rights Reserved.