Enum UpgradeType

    • Enum Constant Detail

      • SEAMLESS

        public static final UpgradeType SEAMLESS
        No specific action needed from administrator, upgrade of specific item should be handled automatically and deprecated feature was replaced by new one without change in behaviour.
      • PREVIEW

        public static final UpgradeType PREVIEW
        Administrator should preview upgrade change that's planned by upgrade process. Deprecated feature has replacement by new one, however there could be some changes in behavior or configuration that need review.
      • MANUAL

        public static final UpgradeType MANUAL
        Upgrade tool will notify about validation issue, however such item needs to be resolved by administrator manually.
    • Method Detail

      • values

        public static UpgradeType[] 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 (UpgradeType c : UpgradeType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static UpgradeType 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