public enum CommandPhase extends Enum<CommandPhase>
Bootstrap life-cycle.| Enum Constant and Description |
|---|
CONFIGURATION
Furnace/Windup is being configured.
|
EXECUTION
Windup is executing.
|
POST_CONFIGURATION
Furnace/Windup is configured but not started.
|
POST_EXECUTION
Windup has finished executing.
|
PRE_CONFIGURATION
Before Furnace/Windup configuration has begun.
|
PRE_EXECUTION
Furnace is started, Windup has not been executed.
|
| Modifier and Type | Method and Description |
|---|---|
static CommandPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommandPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandPhase PRE_CONFIGURATION
public static final CommandPhase CONFIGURATION
public static final CommandPhase POST_CONFIGURATION
public static final CommandPhase PRE_EXECUTION
public static final CommandPhase EXECUTION
public static final CommandPhase POST_EXECUTION
public static CommandPhase[] values()
for (CommandPhase c : CommandPhase.values()) System.out.println(c);
public static CommandPhase 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 © 2020 JBoss by Red Hat. All rights reserved.