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 singleentityfrom the table.Mono<com.azure.core.http.rest.Response<TableEntity>> TableAsyncClient.getEntityWithResponse(String partitionKey, String rowKey, List<String> select) Gets a singleentityfrom 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 singleentityfrom the table.com.azure.core.http.rest.PagedFlux<TableEntity> TableAsyncClient.listEntities()Lists allentitieswithin the table.com.azure.core.http.rest.PagedFlux<TableEntity> TableAsyncClient.listEntities(ListEntitiesOptions options) Listsentitiesusing the parameters in the provided options.com.azure.core.http.rest.PagedIterable<TableEntity> TableClient.listEntities()Lists allentitieswithin the table.com.azure.core.http.rest.PagedIterable<TableEntity> TableClient.listEntities(ListEntitiesOptions options, Duration timeout, com.azure.core.util.Context context) Listsentitiesusing the parameters in the provided options.Methods in com.azure.data.tables with parameters of type TableEntityModifier and TypeMethodDescriptionTableAsyncClient.createEntity(TableEntity entity) Inserts anentityinto the table.voidTableClient.createEntity(TableEntity entity) Inserts anentityinto the table.TableAsyncClient.createEntityWithResponse(TableEntity entity) Inserts anentityinto the table.com.azure.core.http.rest.Response<Void> TableClient.createEntityWithResponse(TableEntity entity, Duration timeout, com.azure.core.util.Context context) Inserts anentityinto the table.TableAsyncClient.deleteEntity(TableEntity entity) Deletes anentityfrom the table.voidTableClient.deleteEntity(TableEntity entity) Deletes anentityfrom the table.TableAsyncClient.deleteEntityWithResponse(TableEntity entity, boolean ifUnchanged) Deletes anentityfrom the table.com.azure.core.http.rest.Response<Void> TableClient.deleteEntityWithResponse(TableEntity entity, boolean ifUnchanged, Duration timeout, com.azure.core.util.Context context) Deletes anentityfrom the table.TableAsyncClient.updateEntity(TableEntity entity) TableAsyncClient.updateEntity(TableEntity entity, TableEntityUpdateMode updateMode) Updates an existingentityusing the specifiedupdate mode.voidTableClient.updateEntity(TableEntity entity) voidTableClient.updateEntity(TableEntity entity, TableEntityUpdateMode updateMode) Updates an existingentityusing the specifiedupdate mode.TableAsyncClient.updateEntityWithResponse(TableEntity entity, TableEntityUpdateMode updateMode, boolean ifUnchanged) Updates an existingentityusing 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 existingentityusing the specifiedupdate mode.TableAsyncClient.upsertEntity(TableEntity entity) voidTableClient.upsertEntity(TableEntity entity) TableAsyncClient.upsertEntityWithResponse(TableEntity entity, TableEntityUpdateMode updateMode) Inserts anentityinto the table if it does not exist, or updates the existingentityusing the specifiedupdate modeotherwise.com.azure.core.http.rest.Response<Void> TableClient.upsertEntityWithResponse(TableEntity entity, TableEntityUpdateMode updateMode, Duration timeout, com.azure.core.util.Context context) Inserts anentityinto the table if it does not exist, or updates the existingentityusing the specifiedupdate modeotherwise. -
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 entityto which theactionTypewill 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.