public static enum CcElementType.MergeType extends Enum<CcElementType.MergeType> implements com.ibm.rational.wvcm.stpex.StpExEnumeration
The merge type defines the behaviour when a merge is performed via deliver, rebase or an explicit findmerge command. The four merge types are:
Enum Constant and Description |
---|
AUTO
Automatically perform merges
|
COPY
Copy version to merge
|
NEVER
Never merge
|
USER
Automatically perform trivial merges, manual for non-trivial
|
Modifier and Type | Method and Description |
---|---|
static CcElementType.MergeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CcElementType.MergeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CcElementType.MergeType AUTO
public static final CcElementType.MergeType COPY
public static final CcElementType.MergeType NEVER
public static final CcElementType.MergeType USER
public static CcElementType.MergeType 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 CcElementType.MergeType[] values()
for (CcElementType.MergeType c : CcElementType.MergeType.values()) System.out.println(c);
Copyright © IBM 2016. All rights reserved.