public enum MergeToolType extends java.lang.Enum<MergeToolType>
RTEGitMergeToolCommand
Enum Constant and Description |
---|
Auto
Detect mode from current selection.
|
Closure
Use closure merge tool mode.
|
FileByFile
Use file-by-file merge tool mode.
|
Logical
Use logical merge tool mode.
|
Modifier and Type | Method and Description |
---|---|
static MergeToolType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MergeToolType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeToolType Auto
public static final MergeToolType FileByFile
The merge tool editor will have list of files. User need to click on file to show content-specific merge view.
public static final MergeToolType Logical
This type is applicable when selection contains conflicting resources from the same single logical model.
public static final MergeToolType Closure
This type is applicable when selection contains conflicting *.emx and *.efx files. Merge tool will process all conflicting resources as single entity.
public static MergeToolType[] values()
for (MergeToolType c : MergeToolType.values()) System.out.println(c);
public static MergeToolType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null