public static enum AbstractMergeManager.ConflictSuppressionStrategy extends java.lang.Enum<AbstractMergeManager.ConflictSuppressionStrategy>
Enum Constant and Description |
---|
Left
Automatically select left version
|
Right
Automatically select right version
|
Modifier and Type | Method and Description |
---|---|
static AbstractMergeManager.ConflictSuppressionStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractMergeManager.ConflictSuppressionStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractMergeManager.ConflictSuppressionStrategy Left
public static final AbstractMergeManager.ConflictSuppressionStrategy Right
public static AbstractMergeManager.ConflictSuppressionStrategy[] values()
for (AbstractMergeManager.ConflictSuppressionStrategy c : AbstractMergeManager.ConflictSuppressionStrategy.values()) System.out.println(c);
public static AbstractMergeManager.ConflictSuppressionStrategy 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