public static enum StartupProgressTrackerService.DefaultProgressState extends java.lang.Enum<StartupProgressTrackerService.DefaultProgressState> implements StartupProgressTrackerService.ProgressState
| Enum Constant and Description |
|---|
DI_SYSTEM_INITIALIZED
The DI-System is started (in case the implementation has @Inject
annotated fields and methods the have been filled now with values)
This state is guaranteed to be reached on JavaFX event thread
|
JAVAFX_INITIALIZED
The JavaFX subsystem has been initialized so custom stages can be
shown.
|
JAVAFX_INITIALIZED_LAUNCHER_THREAD
The JavaFX subsystem has been initialized so custom stages can be
shown.
|
LOCATION_CHECK_FAILED
State reached when check for workspace could not be locked
This state is guaranteed to be reached on JavaFX event thread
|
POST_CONTEXT_LF_FINISHED
The lifecycle @PostContextCreate has been finished
This state is guaranteed to be reached on JavaFX event thread
|
WORKBENCH_GUI_SHOWING
The workbench UI is showing
This method is guaranteed to be called on JavaFX event thread
|
WORKBENCH_GUI_SHOWN
The workbench UI is shown
This method is guaranteed to be called on JavaFX event thread
|
| Modifier and Type | Method and Description |
|---|---|
static StartupProgressTrackerService.DefaultProgressState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StartupProgressTrackerService.DefaultProgressState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StartupProgressTrackerService.DefaultProgressState JAVAFX_INITIALIZED
This state is guaranteed to be reached on JavaFX event thread
public static final StartupProgressTrackerService.DefaultProgressState JAVAFX_INITIALIZED_LAUNCHER_THREAD
This state is guaranteed to be reached on launcher thread
This state is only reach if you are launching on the if you are launching the E4MainThreadApplication
public static final StartupProgressTrackerService.DefaultProgressState DI_SYSTEM_INITIALIZED
This state is guaranteed to be reached on JavaFX event thread
public static final StartupProgressTrackerService.DefaultProgressState POST_CONTEXT_LF_FINISHED
This state is guaranteed to be reached on JavaFX event thread
public static final StartupProgressTrackerService.DefaultProgressState WORKBENCH_GUI_SHOWING
This method is guaranteed to be called on JavaFX event thread
public static final StartupProgressTrackerService.DefaultProgressState WORKBENCH_GUI_SHOWN
This method is guaranteed to be called on JavaFX event thread
public static final StartupProgressTrackerService.DefaultProgressState LOCATION_CHECK_FAILED
This state is guaranteed to be reached on JavaFX event thread
public static StartupProgressTrackerService.DefaultProgressState[] values()
for (StartupProgressTrackerService.DefaultProgressState c : StartupProgressTrackerService.DefaultProgressState.values()) System.out.println(c);
public static StartupProgressTrackerService.DefaultProgressState 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 null