com.ibm.xtools.umldt.rt.api.egit.merge

Enum MergeType

    • Enum Constant Detail

      • FileByFile

        public static final MergeType FileByFile
        Use file mergers for all files in repository.
        When processing file, the merger will attempt to use appropriate IStorageMerger registered for file content type.
      • Logical

        public static final MergeType Logical
        Group all UML models in logical models and process each logical model as single entity from merge point of view. Non-UML models will be processed using file merger.
      • Closure

        public static final MergeType Closure
        Group all UML models in a closure and process it as single entity from merge point of view. Non-UML models will be processed using file merger.
    • Method Detail

      • values

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

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