Enum CompareMergeProcessBatchStatus

    • Enum Constant Detail

      • MERGE_USING_EXTERNAL_TOOL_STARTED

        public static final CompareMergeProcessBatchStatus MERGE_USING_EXTERNAL_TOOL_STARTED
        The merge using external tool has been started.
      • MERGE_USING_EXTERNAL_TOOL_CANCELED

        public static final CompareMergeProcessBatchStatus MERGE_USING_EXTERNAL_TOOL_CANCELED
        The merge using external tool has been canceled.
      • MERGE_USING_EXTERNAL_TOOL_FINISHED

        public static final CompareMergeProcessBatchStatus MERGE_USING_EXTERNAL_TOOL_FINISHED
        The merge using external tool has been finished.
      • MERGE_VALIDATION_PHASE_STARTED

        public static final CompareMergeProcessBatchStatus MERGE_VALIDATION_PHASE_STARTED
        The merge validation phase has been started.
      • MERGE_VALIDATION_PHASE_FINISHED

        public static final CompareMergeProcessBatchStatus MERGE_VALIDATION_PHASE_FINISHED
        The merge validation phase has been finished.
      • MERGE_MAIN_PHASE_STARTED

        public static final CompareMergeProcessBatchStatus MERGE_MAIN_PHASE_STARTED
        The phase of direct objects merging has been started.
      • MERGE_FINISHED

        public static final CompareMergeProcessBatchStatus MERGE_FINISHED
        Executing of merge operations has been finished. Either everything merged successfully or some validation errors occurred.
    • Method Detail

      • values

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

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