public enum TableTransactionActionType extends Enum<TableTransactionActionType>
TableEntity in a transactional operation.| Enum Constant and Description |
|---|
CREATE
Add the entity to the table.
|
DELETE
Delete the entity.
|
UPDATE_MERGE
Update the entity in
TableEntityUpdateMode.MERGE mode. |
UPDATE_REPLACE
Update the entity in
TableEntityUpdateMode.REPLACE mode. |
UPSERT_MERGE
Upsert the entity in
TableEntityUpdateMode.MERGE mode. |
UPSERT_REPLACE
Upsert the entity in
TableEntityUpdateMode.REPLACE mode. |
| Modifier and Type | Method and Description |
|---|---|
static TableTransactionActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableTransactionActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableTransactionActionType CREATE
TableClient.createEntity() or
TableAsyncClient.createEntity().public static final TableTransactionActionType UPSERT_MERGE
TableEntityUpdateMode.MERGE mode. This is equivalent to
TableClient.upsertEntity() or TableAsyncClient.upsertEntity().public static final TableTransactionActionType UPSERT_REPLACE
TableEntityUpdateMode.REPLACE mode. This is equivalent to
TableClient.upsertEntity() or TableAsyncClient.upsertEntity().public static final TableTransactionActionType UPDATE_MERGE
TableEntityUpdateMode.MERGE mode. This is equivalent to
TableClient.updateEntity() or TableAsyncClient.updateEntity().public static final TableTransactionActionType UPDATE_REPLACE
TableEntityUpdateMode.REPLACE mode. This is equivalent to
TableClient.updateEntity() or TableAsyncClient.updateEntity().public static final TableTransactionActionType DELETE
TableClient.deleteEntity() or
TableAsyncClient.deleteEntity().public static TableTransactionActionType[] values()
public static TableTransactionActionType 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.