Uses of Class
com.amazonaws.services.dynamodbv2.document.Expected
Packages that use Expected
Package
Description
-
Uses of Expected in com.amazonaws.services.dynamodbv2.document
Methods in com.amazonaws.services.dynamodbv2.document that return ExpectedModifier and TypeMethodDescriptionExpected.beginsWith
(String val) Creates and returns a condition of the range key with a value that begins with the given value.Creates and returns a condition of the range key that has a value between the given values.Creates and returns a condition of the range key being equal to the given value.Expected.exists()
Expects the attribute be an existing attribute.Creates and returns a condition of the range key being greater than or equal to the given value.Creates and returns a condition of the range key being greater than the given value.Creates and returns a condition of the range key being less than or equal to the given value.Creates and returns a condition of the range key being less than the given value.Expected.notContains
(Object val) Expected.notExist()
Expects the attribute be non-existing.Methods in com.amazonaws.services.dynamodbv2.document with parameters of type ExpectedModifier and TypeMethodDescriptionTable.deleteItem
(PrimaryKey primaryKey, Expected... expected) Table.deleteItem
(String hashKeyName, Object hashKeyValue, Expected... expected) Table.deleteItem
(String hashKeyName, Object hashKeyValue, String rangeKeyName, Object rangeKeyValue, Expected... expected) Method parameters in com.amazonaws.services.dynamodbv2.document with type arguments of type ExpectedModifier and TypeMethodDescriptionTable.updateItem
(PrimaryKey primaryKey, Collection<Expected> expected, AttributeUpdate... attributeUpdates) Table.updateItem
(String hashKeyName, Object hashKeyValue, String rangeKeyName, Object rangeKeyValue, Collection<Expected> expected, AttributeUpdate... attributeUpdates) Table.updateItem
(String hashKeyName, Object hashKeyValue, Collection<Expected> expected, AttributeUpdate... attributeUpdates) -
Uses of Expected in com.amazonaws.services.dynamodbv2.document.api
Methods in com.amazonaws.services.dynamodbv2.document.api with parameters of type ExpectedModifier and TypeMethodDescriptionDeleteItemApi.deleteItem
(PrimaryKey primaryKey, Expected... expected) Conditional delete with the specified primary key and expected conditions.DeleteItemApi.deleteItem
(String hashKeyName, Object hashKeyValue, Expected... expected) Conditional delete with the specified hash-only primary key and expected conditions.DeleteItemApi.deleteItem
(String hashKeyName, Object hashKeyValue, String rangeKeyName, Object rangeKeyValue, Expected... expected) Conditional delete with the specified hash-and-range primary key and expected conditions.Conditional put.Method parameters in com.amazonaws.services.dynamodbv2.document.api with type arguments of type ExpectedModifier and TypeMethodDescriptionUpdateItemApi.updateItem
(PrimaryKey primaryKey, Collection<Expected> expected, AttributeUpdate... attributeUpdates) Updates an item with the attributes specified.UpdateItemApi.updateItem
(String hashKeyName, Object hashKeyValue, String rangeKeyName, Object rangeKeyValue, Collection<Expected> expected, AttributeUpdate... attributeUpdates) Updates an item with the specified hash key, range key and attributes.UpdateItemApi.updateItem
(String hashKeyName, Object hashKeyValue, Collection<Expected> expected, AttributeUpdate... attributeUpdates) Updates an item with the specified hash-only key and attributes. -
Uses of Expected in com.amazonaws.services.dynamodbv2.document.spec
Methods in com.amazonaws.services.dynamodbv2.document.spec that return types with arguments of type ExpectedModifier and TypeMethodDescriptionDeleteItemSpec.getExpected()
PutItemSpec.getExpected()
UpdateItemSpec.getExpected()
Methods in com.amazonaws.services.dynamodbv2.document.spec with parameters of type ExpectedModifier and TypeMethodDescriptionDeleteItemSpec.withExpected
(Expected... expected) PutItemSpec.withExpected
(Expected... expected) UpdateItemSpec.withExpected
(Expected... expected) Method parameters in com.amazonaws.services.dynamodbv2.document.spec with type arguments of type ExpectedModifier and TypeMethodDescriptionDeleteItemSpec.withExpected
(Collection<Expected> expected) PutItemSpec.withExpected
(Collection<Expected> expected) UpdateItemSpec.withExpected
(Collection<Expected> expected)