Enum InstallContext.Phase
- java.lang.Object
-
- java.lang.Enum<InstallContext.Phase>
-
- org.apache.jackrabbit.vault.packaging.InstallContext.Phase
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<InstallContext.Phase>
- Enclosing interface:
- InstallContext
public static enum InstallContext.Phase extends java.lang.Enum<InstallContext.Phase>
The current phase of a package installation
-
-
Enum Constant Summary
Enum Constants Enum Constant Description END
Specifies that the hook is going to be discarded.INSTALL_FAILED
Specifies that the package installation failed and the hooks can do some cleanup work.INSTALLED
Specifies that the package was successfully installed and the hooks can do some post-installation work and cleanup.PREPARE
Specifies that the package is not yet installed and the hooks can do some pre-installation workPREPARE_FAILED
Specifies that the prepare phase failed and the hocks can do some cleanup work.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InstallContext.Phase
valueOf(java.lang.String name)
Returns 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 Detail
-
PREPARE
public static final InstallContext.Phase PREPARE
Specifies that the package is not yet installed and the hooks can do some pre-installation work
-
PREPARE_FAILED
public static final InstallContext.Phase PREPARE_FAILED
Specifies that the prepare phase failed and the hocks can do some cleanup work.
-
INSTALLED
public static final InstallContext.Phase INSTALLED
Specifies that the package was successfully installed and the hooks can do some post-installation work and cleanup.
-
INSTALL_FAILED
public static final InstallContext.Phase INSTALL_FAILED
Specifies that the package installation failed and the hooks can do some cleanup work.
-
END
public static final InstallContext.Phase END
Specifies that the hook is going to be discarded. this is guaranteed to be called at the end of an installation process.
-
-
Method Detail
-
values
public static InstallContext.Phase[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (InstallContext.Phase c : InstallContext.Phase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InstallContext.Phase valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-