public enum MergeDecisionType extends Enum<MergeDecisionType>
Enum Constant and Description |
---|
KEEP_MINE |
KEEP_THEIR |
UNDECIDED |
Modifier and Type | Method and Description |
---|---|
static MergeDecisionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MergeDecisionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeDecisionType KEEP_MINE
public static final MergeDecisionType KEEP_THEIR
public static final MergeDecisionType UNDECIDED
public static MergeDecisionType[] values()
for (MergeDecisionType c : MergeDecisionType.values()) System.out.println(c);
public static MergeDecisionType 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 null