public enum EventType extends java.lang.Enum<EventType>
InstallerEvent
.
Installer events cover everything that is written to the installer log file as well
as application life-cycle events.Enum Constant and Description |
---|
AFTER_DOWNLOAD
Fired before a file has been downloaded.
|
AFTER_EXECUTE_ACTION
Fired after an action has been executed.
|
AFTER_INSTALL_FILE
Fired after a file has been installed.
|
AFTER_ROLLBACK_ACTION
Fired after a rollback is performed
|
BEFORE_DOWNLOAD
Fired before a file is downloaded.
|
BEFORE_EXECUTE_ACTION
Fired before an action is executed
|
BEFORE_INSTALL_FILE
Fired before a file is installed.
|
BEFORE_ROLLBACK_ACTION
Fired before a rollback is performed
|
CANCELED
Fired just before the installer or uninstaller quits after having been cancelled.
|
CANCELLING
Fired when the installer or uninstaller is cancelled but before any cleanup has been performed.
|
DIRECTORY_CREATED
Fired after a directory has been installed.
|
FILE_INSTALLATION_STARTED
Fired before the file installation is started by the "Install files" action.
|
FINISHED
Fired just before the installer or uninstaller quits.
|
FINISHING
Fired when the installer or uninstaller quits but before any cleanup has been performed.
|
SHOW_SCREEN
Fired before a screen is shown.
|
VARIABLE_CHANGED
Fired after a variable has been set.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getOperationVerbose()
Get a verbose message that describes the operation that is connected with this event.
|
java.lang.String |
toString() |
static EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventType BEFORE_EXECUTE_ACTION
public static final EventType AFTER_EXECUTE_ACTION
InstallerActionEvent
.public static final EventType BEFORE_ROLLBACK_ACTION
public static final EventType AFTER_ROLLBACK_ACTION
public static final EventType BEFORE_INSTALL_FILE
InstallerFileEvent
.public static final EventType AFTER_INSTALL_FILE
InstallerFileEvent
.public static final EventType DIRECTORY_CREATED
InstallerDirectoryEvent
.public static final EventType BEFORE_DOWNLOAD
InstallerDownloadEvent
.public static final EventType AFTER_DOWNLOAD
InstallerDownloadEvent
.public static final EventType SHOW_SCREEN
public static final EventType FINISHING
public static final EventType FINISHED
public static final EventType CANCELLING
public static final EventType CANCELED
public static final EventType VARIABLE_CHANGED
Context.setVariable(String, Object)
public static final EventType FILE_INSTALLATION_STARTED
public static EventType[] values()
for (EventType c : EventType.values()) System.out.println(c);
public static EventType 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 nullpublic java.lang.String getOperationVerbose()
public java.lang.String toString()
toString
in class java.lang.Enum<EventType>