public static enum CcMergeElement.MergeInterventionType extends Enum<CcMergeElement.MergeInterventionType>
TRIVIAL
or NON_TRIVIAL
. After the merge stage,
MergeInterventionType shows what type of merge was performed,
AUTOMATIC
or MANUAL
.Enum Constant and Description |
---|
AUTOMATIC
No intervention during the merge.
|
MANUAL
There was user intervention during the merge.
|
NON_TRIVIAL
User intervention is required.
|
TRIVIAL
No user intervention is required.
|
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static CcMergeElement.MergeInterventionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CcMergeElement.MergeInterventionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CcMergeElement.MergeInterventionType AUTOMATIC
public static final CcMergeElement.MergeInterventionType MANUAL
public static final CcMergeElement.MergeInterventionType NON_TRIVIAL
public static final CcMergeElement.MergeInterventionType TRIVIAL
public static final CcMergeElement.MergeInterventionType UNKNOWN
public static CcMergeElement.MergeInterventionType 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 static CcMergeElement.MergeInterventionType[] values()
for (CcMergeElement.MergeInterventionType c : CcMergeElement.MergeInterventionType.values()) System.out.println(c);
Copyright © IBM 2017. All rights reserved.