Uses of Class
com.azure.data.tables.models.TableEntity
Packages that use TableEntity
Package
Description
Azure Tables is a NoSQL key-value storage service offered by Microsoft Azure, which provides a highly
scalable and cost-effective solution for storing structured data.
Package containing the data models for AzureTable.
-
Uses of TableEntity in com.azure.data.tables
Methods in com.azure.data.tables that return TableEntityMethods in com.azure.data.tables that return types with arguments of type TableEntityModifier and TypeMethodDescriptionGets a singleentity
from the table.Mono
<com.azure.core.http.rest.Response<TableEntity>> TableAsyncClient.getEntityWithResponse
(String partitionKey, String rowKey, List<String> select) Gets a singleentity
from the table.com.azure.core.http.rest.Response
<TableEntity> TableClient.getEntityWithResponse
(String partitionKey, String rowKey, List<String> select, Duration timeout, com.azure.core.util.Context context) Gets a singleentity
from the table.com.azure.core.http.rest.PagedFlux
<TableEntity> TableAsyncClient.listEntities()
Lists allentities
within the table.com.azure.core.http.rest.PagedFlux
<TableEntity> TableAsyncClient.listEntities
(ListEntitiesOptions options) Listsentities
using the parameters in the provided options.com.azure.core.http.rest.PagedIterable
<TableEntity> TableClient.listEntities()
Lists allentities
within the table.com.azure.core.http.rest.PagedIterable
<TableEntity> TableClient.listEntities
(ListEntitiesOptions options, Duration timeout, com.azure.core.util.Context context) Listsentities
using the parameters in the provided options.Methods in com.azure.data.tables with parameters of type TableEntityModifier and TypeMethodDescriptionTableAsyncClient.createEntity
(TableEntity entity) Inserts anentity
into the table.void
TableClient.createEntity
(TableEntity entity) Inserts anentity
into the table.TableAsyncClient.createEntityWithResponse
(TableEntity entity) Inserts anentity
into the table.com.azure.core.http.rest.Response
<Void> TableClient.createEntityWithResponse
(TableEntity entity, Duration timeout, com.azure.core.util.Context context) Inserts anentity
into the table.TableAsyncClient.deleteEntity
(TableEntity entity) Deletes anentity
from the table.void
TableClient.deleteEntity
(TableEntity entity) Deletes anentity
from the table.TableAsyncClient.deleteEntityWithResponse
(TableEntity entity, boolean ifUnchanged) Deletes anentity
from the table.com.azure.core.http.rest.Response
<Void> TableClient.deleteEntityWithResponse
(TableEntity entity, boolean ifUnchanged, Duration timeout, com.azure.core.util.Context context) Deletes anentity
from the table.TableAsyncClient.updateEntity
(TableEntity entity) TableAsyncClient.updateEntity
(TableEntity entity, TableEntityUpdateMode updateMode) Updates an existingentity
using the specifiedupdate mode
.void
TableClient.updateEntity
(TableEntity entity) void
TableClient.updateEntity
(TableEntity entity, TableEntityUpdateMode updateMode) Updates an existingentity
using the specifiedupdate mode
.TableAsyncClient.updateEntityWithResponse
(TableEntity entity, TableEntityUpdateMode updateMode, boolean ifUnchanged) Updates an existingentity
using the specifiedupdate mode
.com.azure.core.http.rest.Response
<Void> TableClient.updateEntityWithResponse
(TableEntity entity, TableEntityUpdateMode updateMode, boolean ifUnchanged, Duration timeout, com.azure.core.util.Context context) Updates an existingentity
using the specifiedupdate mode
.TableAsyncClient.upsertEntity
(TableEntity entity) void
TableClient.upsertEntity
(TableEntity entity) TableAsyncClient.upsertEntityWithResponse
(TableEntity entity, TableEntityUpdateMode updateMode) Inserts anentity
into the table if it does not exist, or updates the existingentity
using the specifiedupdate mode
otherwise.com.azure.core.http.rest.Response
<Void> TableClient.upsertEntityWithResponse
(TableEntity entity, TableEntityUpdateMode updateMode, Duration timeout, com.azure.core.util.Context context) Inserts anentity
into the table if it does not exist, or updates the existingentity
using the specifiedupdate mode
otherwise. -
Uses of TableEntity in com.azure.data.tables.models
Methods in com.azure.data.tables.models that return TableEntityModifier and TypeMethodDescriptionTableEntity.addProperty
(String key, Object value) Adds a single property to the entity's properties map.TableTransactionAction.getEntity()
Get thetable entity
to which theactionType
will be applied.TableEntity.setProperties
(Map<String, Object> properties) Sets the contents of the provided map to the entity's properties map.Constructors in com.azure.data.tables.models with parameters of type TableEntityModifierConstructorDescriptionTableTransactionAction
(TableTransactionActionType actionType, TableEntity entity) Initializes a new instance of theTableTransactionAction
.TableTransactionAction
(TableTransactionActionType actionType, TableEntity entity, boolean ifUnchanged) Initializes a new instance of theTableTransactionAction
.