public static enum MergeInsertParams.WhenNotMatched extends Enum<MergeInsertParams.WhenNotMatched>
| Enum Constant and Description |
|---|
DoNothing
The new row is ignored.
|
InsertAll
The new row is inserted into the target table.
|
| Modifier and Type | Method and Description |
|---|---|
static MergeInsertParams.WhenNotMatched |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MergeInsertParams.WhenNotMatched[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeInsertParams.WhenNotMatched InsertAll
public static final MergeInsertParams.WhenNotMatched DoNothing
public static MergeInsertParams.WhenNotMatched[] values()
for (MergeInsertParams.WhenNotMatched c : MergeInsertParams.WhenNotMatched.values()) System.out.println(c);
public static MergeInsertParams.WhenNotMatched 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 nullCopyright © 2025. All rights reserved.