public static enum MergeCommand.Strategy extends Enum<MergeCommand.Strategy>
| Enum Constant and Description |
|---|
DEFAULT |
OCTOPUS |
OURS |
RECURSIVE |
RECURSIVE_THEIRS |
RESOLVE |
SUBTREE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static MergeCommand.Strategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MergeCommand.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeCommand.Strategy DEFAULT
public static final MergeCommand.Strategy RESOLVE
public static final MergeCommand.Strategy RECURSIVE
public static final MergeCommand.Strategy OCTOPUS
public static final MergeCommand.Strategy OURS
public static final MergeCommand.Strategy SUBTREE
public static final MergeCommand.Strategy RECURSIVE_THEIRS
public static MergeCommand.Strategy[] values()
for (MergeCommand.Strategy c : MergeCommand.Strategy.values()) System.out.println(c);
public static MergeCommand.Strategy 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 nullpublic String toString()
toString in class Enum<MergeCommand.Strategy>Copyright © 2013–2020. All rights reserved.