public enum UpdateMode extends Enum<UpdateMode>
| 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 UpdateMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateMode MERGE
public static final UpdateMode REPLACE
public static UpdateMode[] values()
public static UpdateMode 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.