public enum BootEvents extends Enum<BootEvents>
| Modifier and Type | Field and Description |
|---|---|
static int |
APP_INITIALISATION_COMPLETED
Event type signalling the start of the elara application.
|
static int |
APP_INITIALISATION_STARTED
Event type signalling the start of the elara application.
|
| Modifier and Type | Method and Description |
|---|---|
static String |
bootEventName(Event event) |
static String |
bootEventName(Frame frame) |
static String |
bootEventName(int eventType) |
static boolean |
isBootEvent(Event event) |
static boolean |
isBootEvent(Frame frame) |
static boolean |
isBootEvent(int eventType) |
static BootEvents |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BootEvents[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final int APP_INITIALISATION_STARTED
public static final int APP_INITIALISATION_COMPLETED
APP_INITIALISATION_STARTED but a few other non-replayed events may come before it due to racing. The
event carries a timestamp when event replaying was complete and can hence be significantly larger than the
timestamp of APP_INITIALISATION_STARTED.public static BootEvents[] values()
for (BootEvents c : BootEvents.values()) System.out.println(c);
public static BootEvents 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 isBootEvent(Event event)
public static boolean isBootEvent(Frame frame)
public static boolean isBootEvent(int eventType)
public static String bootEventName(int eventType)
Copyright © 2020 tools4j.org (Marco Terzer, Anton Anufriev). All Rights Reserved.