Enum InstallContext.Phase

    • 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​(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