@API(type=NOT_EXTENDABLE, src=PUBLIC) public enum MergeConflictResolutionMethods extends java.lang.Enum<MergeConflictResolutionMethods>
Enum Constant and Description |
---|
USE_ANCESTOR
Conflicts will be resolved by using the original version of a file.
|
USE_LEFT
Conflicts will be resolved by using the left version of a file.
|
USE_RIGHT
Conflicts will be resolved by using the right version of a file.
|
Modifier and Type | Method and Description |
---|---|
static MergeConflictResolutionMethods |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MergeConflictResolutionMethods[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeConflictResolutionMethods USE_LEFT
public static final MergeConflictResolutionMethods USE_RIGHT
public static final MergeConflictResolutionMethods USE_ANCESTOR
public static MergeConflictResolutionMethods[] values()
for (MergeConflictResolutionMethods c : MergeConflictResolutionMethods.values()) System.out.println(c);
public static MergeConflictResolutionMethods 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© Copyright SyncRO Soft SRL 2002 - 2016. All rights reserved.