| Package | Description |
|---|---|
| com.azure.data.tables |
Package containing the classes for Tables Clients.
|
| Modifier and Type | Method and Description |
|---|---|
TableBatch |
TableClient.createBatch(String partitionKey)
Creates a new
TableBatch object. |
TableBatch |
TableBatch.createEntity(TableEntity entity)
Inserts an entity into the table.
|
TableBatch |
TableBatch.deleteEntity(String rowKey)
Deletes an entity from the table.
|
TableBatch |
TableBatch.deleteEntity(String rowKey,
String eTag)
Deletes an entity from the table.
|
TableBatch |
TableBatch.updateEntity(TableEntity entity)
Updates an existing entity by merging the provided entity with the existing entity.
|
TableBatch |
TableBatch.updateEntity(TableEntity entity,
UpdateMode updateMode)
Updates an existing entity using the specified update mode.
|
TableBatch |
TableBatch.updateEntity(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged)
Updates an existing entity using the specified update mode.
|
TableBatch |
TableBatch.upsertEntity(TableEntity entity)
Inserts an entity into the table if it does not exist, or merges the entity with the existing entity otherwise.
|
TableBatch |
TableBatch.upsertEntity(TableEntity entity,
UpdateMode updateMode)
Inserts an entity into the table if it does not exist, or updates the existing entity using the specified update
mode otherwise.
|
Copyright © 2021 Microsoft Corporation. All rights reserved.