Enum InstallContext.Phase
- All Implemented Interfaces:
Serializable,Comparable<InstallContext.Phase>
- Enclosing interface:
- InstallContext
The current phase of a package installation
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies that the hook is going to be discarded. this is guaranteed to be called at the end of an installation process.Specifies that the package installation failed and the hooks can do some cleanup work.Specifies that the package was successfully installed and the hooks can do some post-installation work and cleanup.Specifies that the package is not yet installed and the hooks can do some pre-installation workSpecifies that the prepare phase failed and the hocks can do some cleanup work. -
Method Summary
Modifier and TypeMethodDescriptionstatic InstallContext.PhaseReturns the enum constant of this type with the specified name.static InstallContext.Phase[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PREPARE
Specifies that the package is not yet installed and the hooks can do some pre-installation work -
PREPARE_FAILED
Specifies that the prepare phase failed and the hocks can do some cleanup work. -
INSTALLED
Specifies that the package was successfully installed and the hooks can do some post-installation work and cleanup. -
INSTALL_FAILED
Specifies that the package installation failed and the hooks can do some cleanup work. -
END
Specifies that the hook is going to be discarded. this is guaranteed to be called at the end of an installation process.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-