Enum FullCheckoutReason

    • Enum Constant Detail

      • CLEAN_ALL_FILES_BEFORE_BUILD_SELECTED

        public static final FullCheckoutReason CLEAN_ALL_FILES_BEFORE_BUILD_SELECTED
      • CLEAN_CHECKOUT_REQUESTED

        public static final FullCheckoutReason CLEAN_CHECKOUT_REQUESTED
      • ROOT_DIRECTORY_WAS_CLEANED_UP_WITH_ERRORS

        public static final FullCheckoutReason ROOT_DIRECTORY_WAS_CLEANED_UP_WITH_ERRORS
      • NO_EXISTING_VERSION_ON_AGENT

        public static final FullCheckoutReason NO_EXISTING_VERSION_ON_AGENT
      • REQUESTED_VERSION_OLDER_THAN_EXISTING_ON_AGENT

        public static final FullCheckoutReason REQUESTED_VERSION_OLDER_THAN_EXISTING_ON_AGENT
      • VCS_SETTINGS_HAVE_BEEN_CHANGED

        public static final FullCheckoutReason VCS_SETTINGS_HAVE_BEEN_CHANGED
    • Method Detail

      • values

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

        public static FullCheckoutReason 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
      • getDescription

        @NotNull
        public String getDescription()
      • canFailBuildInsteadOfCleanCheckout

        public boolean canFailBuildInsteadOfCleanCheckout()