Uses of Class
com.azure.data.tables.models.TableEntity
-
Packages that use TableEntity 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. -
-
Uses of TableEntity in com.azure.data.tables
Methods in com.azure.data.tables that return TableEntity Modifier and Type Method Description TableEntityTableClient. getEntity(String partitionKey, String rowKey)Gets a singleentityfrom the table.Methods in com.azure.data.tables that return types with arguments of type TableEntity Modifier and Type Method Description Mono<TableEntity>TableAsyncClient. getEntity(String partitionKey, String rowKey)Gets 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 TableEntity Modifier and Type Method Description Mono<Void>TableAsyncClient. createEntity(TableEntity entity)Inserts anentityinto the table.voidTableClient. createEntity(TableEntity entity)Inserts anentityinto the table.Mono<com.azure.core.http.rest.Response<Void>>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.Mono<Void>TableAsyncClient. deleteEntity(TableEntity entity)Deletes anentityfrom the table.voidTableClient. deleteEntity(TableEntity entity)Deletes anentityfrom the table.Mono<com.azure.core.http.rest.Response<Void>>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.Mono<Void>TableAsyncClient. updateEntity(TableEntity entity)Mono<Void>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.Mono<com.azure.core.http.rest.Response<Void>>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.Mono<Void>TableAsyncClient. upsertEntity(TableEntity entity)voidTableClient. upsertEntity(TableEntity entity)Mono<com.azure.core.http.rest.Response<Void>>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 TableEntity Modifier and Type Method Description TableEntityTableEntity. addProperty(String key, Object value)Adds a single property to the entity's properties map.TableEntityTableTransactionAction. getEntity()Get thetable entityto which theactionTypewill be applied.TableEntityTableEntity. 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 TableEntity Constructor Description TableTransactionAction(TableTransactionActionType actionType, TableEntity entity)Initializes a new instance of theTableTransactionAction.TableTransactionAction(TableTransactionActionType actionType, TableEntity entity, boolean ifUnchanged)Initializes a new instance of theTableTransactionAction.
-