| Package | Description |
|---|---|
| com.azure.data.tables |
Package containing the classes for Tables Clients.
|
| com.azure.data.tables.models |
Package containing the implementations and inner classes for AzureTable.
|
| Modifier and Type | Method and Description |
|---|---|
TableEntity |
TableClient.getEntity(String partitionKey,
String rowKey)
Gets a single entity from the table.
|
TableEntity |
TableClient.getEntity(String partitionKey,
String rowKey,
String select)
Gets a single entity from the table.
|
TableEntity |
TableClient.getEntity(String partitionKey,
String rowKey,
String select,
Duration timeout)
Gets a single entity from the table.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<Void> |
TableAsyncClient.createEntity(TableEntity entity)
Inserts an entity into the table.
|
TableBatch |
TableBatch.createEntity(TableEntity entity)
Inserts an entity into the table.
|
void |
TableClient.createEntity(TableEntity entity)
Inserts an entity into the table.
|
TableAsyncBatch |
TableAsyncBatch.createEntity(TableEntity entity)
Inserts an entity into the table.
|
void |
TableClient.createEntity(TableEntity entity,
Duration timeout)
Inserts an entity into the table.
|
Mono<com.azure.core.http.rest.Response<Void>> |
TableAsyncClient.createEntityWithResponse(TableEntity entity)
Inserts an entity into the table.
|
com.azure.core.http.rest.Response<Void> |
TableClient.createEntityWithResponse(TableEntity entity,
Duration timeout,
com.azure.core.util.Context context)
Inserts an entity into the table.
|
Mono<Void> |
TableAsyncClient.updateEntity(TableEntity entity)
Updates an existing entity by merging the provided entity with the existing entity.
|
TableBatch |
TableBatch.updateEntity(TableEntity entity)
Updates an existing entity by merging the provided entity with the existing entity.
|
void |
TableClient.updateEntity(TableEntity entity)
Updates an existing entity by merging the provided entity with the existing entity.
|
TableAsyncBatch |
TableAsyncBatch.updateEntity(TableEntity entity)
Updates an existing entity by merging the provided entity with the existing entity.
|
Mono<Void> |
TableAsyncClient.updateEntity(TableEntity entity,
UpdateMode updateMode)
Updates an existing entity using the specified update mode.
|
TableBatch |
TableBatch.updateEntity(TableEntity entity,
UpdateMode updateMode)
Updates an existing entity using the specified update mode.
|
void |
TableClient.updateEntity(TableEntity entity,
UpdateMode updateMode)
Updates an existing entity using the specified update mode.
|
TableAsyncBatch |
TableAsyncBatch.updateEntity(TableEntity entity,
UpdateMode updateMode)
Updates an existing entity using the specified update mode.
|
Mono<Void> |
TableAsyncClient.updateEntity(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged)
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.
|
void |
TableClient.updateEntity(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged)
Updates an existing entity using the specified update mode.
|
TableAsyncBatch |
TableAsyncBatch.updateEntity(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged)
Updates an existing entity using the specified update mode.
|
void |
TableClient.updateEntity(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged,
Duration timeout)
Updates an existing entity using the specified update mode.
|
Mono<com.azure.core.http.rest.Response<Void>> |
TableAsyncClient.updateEntityWithResponse(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged)
Updates an existing entity using the specified update mode.
|
com.azure.core.http.rest.Response<Void> |
TableClient.updateEntityWithResponse(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged,
Duration timeout,
com.azure.core.util.Context context)
Updates an existing entity using the specified update mode.
|
Mono<Void> |
TableAsyncClient.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)
Inserts an entity into the table if it does not exist, or merges the entity with the existing entity otherwise.
|
void |
TableClient.upsertEntity(TableEntity entity)
Inserts an entity into the table if it does not exist, or merges the entity with the existing entity otherwise.
|
TableAsyncBatch |
TableAsyncBatch.upsertEntity(TableEntity entity)
Inserts an entity into the table if it does not exist, or merges the entity with the existing entity otherwise.
|
Mono<Void> |
TableAsyncClient.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.
|
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.
|
void |
TableClient.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.
|
TableAsyncBatch |
TableAsyncBatch.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.
|
void |
TableClient.upsertEntity(TableEntity entity,
UpdateMode updateMode,
Duration timeout)
Inserts an entity into the table if it does not exist, or updates the existing entity using the specified update
mode otherwise.
|
Mono<com.azure.core.http.rest.Response<Void>> |
TableAsyncClient.upsertEntityWithResponse(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.
|
com.azure.core.http.rest.Response<Void> |
TableClient.upsertEntityWithResponse(TableEntity entity,
UpdateMode updateMode,
Duration timeout,
com.azure.core.util.Context context)
Inserts an entity into the table if it does not exist, or updates the existing entity using the specified update
mode otherwise.
|
| Modifier and Type | Method and Description |
|---|---|
TableEntity |
TableEntity.addProperties(Map<String,Object> properties)
Adds the contents of the provided map to the entity's properties map.
|
TableEntity |
TableEntity.addProperty(String key,
Object value)
Adds a single property to the entity's properties map.
|
Copyright © 2021 Microsoft Corporation. All rights reserved.