Enum ComparisonProcessStatus

    • Enum Constant Detail

      • COMPARISON_PROCESS_INITIALIZATION_STARTED

        public static final ComparisonProcessStatus COMPARISON_PROCESS_INITIALIZATION_STARTED
        The comparison process initialization has been started.
      • COMPARISON_PROCESS_INITIALIZATION_FINISHED

        public static final ComparisonProcessStatus COMPARISON_PROCESS_INITIALIZATION_FINISHED
        The comparison process initialization has been finished.
      • COMPARISON_PROCESS_TOP_OBJECTS_MATCHED

        public static final ComparisonProcessStatus COMPARISON_PROCESS_TOP_OBJECTS_MATCHED
        Top objects have been matched.
      • COMPARISON_PROCESS_FINISHED

        public static final ComparisonProcessStatus COMPARISON_PROCESS_FINISHED
        The comparison process has been finished successfully. The comparison process won't reach this status if it has been interrupted.
      • MERGE_PROCESS_USING_EXTERNAL_TOOL_STARTED

        public static final ComparisonProcessStatus MERGE_PROCESS_USING_EXTERNAL_TOOL_STARTED
        The merge process using external tool has been started.
      • MERGE_PROCESS_USING_EXTERNAL_TOOL_CANCELED

        public static final ComparisonProcessStatus MERGE_PROCESS_USING_EXTERNAL_TOOL_CANCELED
        The merge process using external tool has been canceled.
      • MERGE_PROCESS_USING_EXTERNAL_TOOL_FINISHED

        public static final ComparisonProcessStatus MERGE_PROCESS_USING_EXTERNAL_TOOL_FINISHED
        The merge process using external tool has been finished.
      • MERGE_PROCESS_VALIDATION_STARTED

        public static final ComparisonProcessStatus MERGE_PROCESS_VALIDATION_STARTED
        The merge validation process has been started.
      • MERGE_PROCESS_VALIDATION_FINISHED

        public static final ComparisonProcessStatus MERGE_PROCESS_VALIDATION_FINISHED
        The merge validation process has been finished.
      • MERGE_PROCESS_STARTED

        public static final ComparisonProcessStatus MERGE_PROCESS_STARTED
        The merge process has been started.
      • MERGE_PROCESS_FINISHED

        public static final ComparisonProcessStatus MERGE_PROCESS_FINISHED
        Post-merge actions have been performed and the merge process has been finished.
    • Method Detail

      • values

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

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