public static enum MergeCommand.ConflictStyle extends Enum<MergeCommand.ConflictStyle>
| Enum Constant and Description |
|---|
DIFF3
"diff3" style: ours/base/theirs.
|
MERGE
"merge" style: only ours/theirs.
|
| Modifier and Type | Method and Description |
|---|---|
static MergeCommand.ConflictStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MergeCommand.ConflictStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeCommand.ConflictStyle MERGE
public static final MergeCommand.ConflictStyle DIFF3
public static MergeCommand.ConflictStyle[] values()
for (MergeCommand.ConflictStyle c : MergeCommand.ConflictStyle.values()) System.out.println(c);
public static MergeCommand.ConflictStyle 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 nullCopyright © 2021 Eclipse JGit Project. All rights reserved.