Uses of Class
com.azure.data.tables.models.TableEntityUpdateMode
-
Packages that use TableEntityUpdateMode 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 TableEntityUpdateMode in com.azure.data.tables
Methods in com.azure.data.tables with parameters of type TableEntityUpdateMode Modifier and Type Method Description Mono<Void>TableAsyncClient. updateEntity(TableEntity entity, TableEntityUpdateMode updateMode)Updates an existingentityusing the specifiedupdate mode.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<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 TableEntityUpdateMode in com.azure.data.tables.models
Methods in com.azure.data.tables.models that return TableEntityUpdateMode Modifier and Type Method Description static TableEntityUpdateModeTableEntityUpdateMode. valueOf(String name)Returns the enum constant of this type with the specified name.static TableEntityUpdateMode[]TableEntityUpdateMode. values()Returns an array containing the constants of this enum type, in the order they are declared.
-