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