| Enum Constant and Description |
|---|
ALWAYS
Always consume lower priority elements unless it is strictly equals to the higher priority
element.
|
CONFLICT
Always generate a merging failure when encountering lower priority elements.
|
IGNORE
Do not attempt to merge with lower priority elements.
|
MERGE
Merge this element with lower priority elements.
|
MERGE_CHILDREN_ONLY
Merge this element's children with lower priority element's children.
|
| Modifier and Type | Method and Description |
|---|---|
static MergeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MergeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeType MERGE_CHILDREN_ONLY
public static final MergeType MERGE
public static final MergeType CONFLICT
public static final MergeType IGNORE
public static final MergeType ALWAYS
public static MergeType[] values()
for (MergeType c : MergeType.values()) System.out.println(c);
public static MergeType 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