public enum BootCommands extends Enum<BootCommands>
| Modifier and Type | Field and Description |
|---|---|
static int |
SIGNAL_APP_INITIALISATION_COMPLETE
Command enqueued to the command via loopback when the first non-replayed event observed; the boot plugin command
processor translates this command into an
APP_INITIALISATION_COMPLETED event. |
static int |
SIGNAL_APP_INITIALISATION_START
Command added to the command log when an application is started; the boot plugin command processor translates
this command into an
APP_INITIALISATION_STARTED event. |
| Modifier and Type | Method and Description |
|---|---|
static String |
bootCommandName(Command command) |
static String |
bootCommandName(Frame frame) |
static String |
bootCommandName(int commandType) |
static boolean |
isBootCommand(Command command) |
static boolean |
isBootCommand(Frame frame) |
static boolean |
isBootCommandType(int commandType) |
static BootCommands |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BootCommands[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final int SIGNAL_APP_INITIALISATION_START
APP_INITIALISATION_STARTED event.public static final int SIGNAL_APP_INITIALISATION_COMPLETE
APP_INITIALISATION_COMPLETED event.public static BootCommands[] values()
for (BootCommands c : BootCommands.values()) System.out.println(c);
public static BootCommands 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 nullpublic static boolean isBootCommand(Command command)
public static boolean isBootCommand(Frame frame)
public static boolean isBootCommandType(int commandType)
public static String bootCommandName(int commandType)
Copyright © 2020 tools4j.org (Marco Terzer, Anton Anufriev). All Rights Reserved.