public enum TableEntityUpdateMode extends Enum<TableEntityUpdateMode>
| Enum Constant and Description |
|---|
MERGE
The provided entity's properties will be merged into the existing entity.
|
REPLACE
The provided entity's properties will completely replace those in the existing entity.
|
| Modifier and Type | Method and Description |
|---|---|
static TableEntityUpdateMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableEntityUpdateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableEntityUpdateMode MERGE
public static final TableEntityUpdateMode REPLACE
public static TableEntityUpdateMode[] values()
public static TableEntityUpdateMode 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 © 2021 Microsoft Corporation. All rights reserved.