Enum InstallContext.Phase

java.lang.Object
java.lang.Enum<InstallContext.Phase>
org.apache.jackrabbit.vault.packaging.InstallContext.Phase
All Implemented Interfaces:
Serializable, Comparable<InstallContext.Phase>, java.lang.constant.Constable
Enclosing interface:
InstallContext

public static enum InstallContext.Phase extends Enum<InstallContext.Phase>
The current phase of a package installation
  • Enum Constant Details

    • 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 Details

    • values

      public static InstallContext.Phase[] 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

      public static InstallContext.Phase valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null