Uses of Class
com.amazonaws.services.dynamodbv2.document.Expected
-
Packages that use Expected Package Description com.amazonaws.services.dynamodbv2.document com.amazonaws.services.dynamodbv2.document.api com.amazonaws.services.dynamodbv2.document.spec -
-
Uses of Expected in com.amazonaws.services.dynamodbv2.document
Methods in com.amazonaws.services.dynamodbv2.document that return Expected Modifier and Type Method Description Expected
Expected. beginsWith(String val)
Creates and returns a condition of the range key with a value that begins with the given value.Expected
Expected. between(Object low, Object hi)
Creates and returns a condition of the range key that has a value between the given values.Expected
Expected. contains(Object val)
Expected
Expected. eq(Object val)
Creates and returns a condition of the range key being equal to the given value.Expected
Expected. exists()
Expects the attribute be an existing attribute.Expected
Expected. ge(Object val)
Creates and returns a condition of the range key being greater than or equal to the given value.Expected
Expected. gt(Object val)
Creates and returns a condition of the range key being greater than the given value.Expected
Expected. in(Object... values)
Expected
Expected. le(Object val)
Creates and returns a condition of the range key being less than or equal to the given value.Expected
Expected. lt(Object val)
Creates and returns a condition of the range key being less than the given value.Expected
Expected. ne(Object val)
Expected
Expected. notContains(Object val)
Expected
Expected. notExist()
Expects the attribute be non-existing.Methods in com.amazonaws.services.dynamodbv2.document with parameters of type Expected Modifier and Type Method Description DeleteItemOutcome
Table. deleteItem(PrimaryKey primaryKey, Expected... expected)
DeleteItemOutcome
Table. deleteItem(String hashKeyName, Object hashKeyValue, Expected... expected)
DeleteItemOutcome
Table. deleteItem(String hashKeyName, Object hashKeyValue, String rangeKeyName, Object rangeKeyValue, Expected... expected)
PutItemOutcome
Table. putItem(Item item, Expected... expected)
Method parameters in com.amazonaws.services.dynamodbv2.document with type arguments of type Expected Modifier and Type Method Description UpdateItemOutcome
Table. updateItem(PrimaryKey primaryKey, Collection<Expected> expected, AttributeUpdate... attributeUpdates)
UpdateItemOutcome
Table. updateItem(String hashKeyName, Object hashKeyValue, String rangeKeyName, Object rangeKeyValue, Collection<Expected> expected, AttributeUpdate... attributeUpdates)
UpdateItemOutcome
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 Expected Modifier and Type Method Description DeleteItemOutcome
DeleteItemApi. deleteItem(PrimaryKey primaryKey, Expected... expected)
Conditional delete with the specified primary key and expected conditions.DeleteItemOutcome
DeleteItemApi. deleteItem(String hashKeyName, Object hashKeyValue, Expected... expected)
Conditional delete with the specified hash-only primary key and expected conditions.DeleteItemOutcome
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.PutItemOutcome
PutItemApi. putItem(Item item, Expected... expected)
Conditional put.Method parameters in com.amazonaws.services.dynamodbv2.document.api with type arguments of type Expected Modifier and Type Method Description UpdateItemOutcome
UpdateItemApi. updateItem(PrimaryKey primaryKey, Collection<Expected> expected, AttributeUpdate... attributeUpdates)
Updates an item with the attributes specified.UpdateItemOutcome
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.UpdateItemOutcome
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 Expected Modifier and Type Method Description Collection<Expected>
DeleteItemSpec. getExpected()
Collection<Expected>
PutItemSpec. getExpected()
Collection<Expected>
UpdateItemSpec. getExpected()
Methods in com.amazonaws.services.dynamodbv2.document.spec with parameters of type Expected Modifier and Type Method Description DeleteItemSpec
DeleteItemSpec. withExpected(Expected... expected)
PutItemSpec
PutItemSpec. withExpected(Expected... expected)
UpdateItemSpec
UpdateItemSpec. withExpected(Expected... expected)
Method parameters in com.amazonaws.services.dynamodbv2.document.spec with type arguments of type Expected Modifier and Type Method Description DeleteItemSpec
DeleteItemSpec. withExpected(Collection<Expected> expected)
PutItemSpec
PutItemSpec. withExpected(Collection<Expected> expected)
UpdateItemSpec
UpdateItemSpec. withExpected(Collection<Expected> expected)
-