public enum MergeType extends Enum<MergeType>
Enum Constant and Description |
---|
Closure
Group all UML models in a closure and process it as single entity from merge point of view.
|
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
Group all UML models in logical models and process each logical model as single entity from merge point of view.
|
Modifier and Type | Method and Description |
---|---|
static MergeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MergeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeType FileByFile
IStorageMerger
registered for file content type.public static final MergeType Logical
public static final MergeType Closure
public static MergeType[] values()
for (MergeType c : MergeType.values()) System.out.println(c);
public static MergeType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null