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 ExpectedExpected. beginsWith(String val)Creates and returns a condition of the range key with a value that begins with the given value.ExpectedExpected. between(Object low, Object hi)Creates and returns a condition of the range key that has a value between the given values.ExpectedExpected. contains(Object val)ExpectedExpected. eq(Object val)Creates and returns a condition of the range key being equal to the given value.ExpectedExpected. exists()Expects the attribute be an existing attribute.ExpectedExpected. ge(Object val)Creates and returns a condition of the range key being greater than or equal to the given value.ExpectedExpected. gt(Object val)Creates and returns a condition of the range key being greater than the given value.ExpectedExpected. in(Object... values)ExpectedExpected. le(Object val)Creates and returns a condition of the range key being less than or equal to the given value.ExpectedExpected. lt(Object val)Creates and returns a condition of the range key being less than the given value.ExpectedExpected. ne(Object val)ExpectedExpected. notContains(Object val)ExpectedExpected. notExist()Expects the attribute be non-existing.Methods in com.amazonaws.services.dynamodbv2.document with parameters of type Expected Modifier and Type Method Description DeleteItemOutcomeTable. deleteItem(PrimaryKey primaryKey, Expected... expected)DeleteItemOutcomeTable. deleteItem(String hashKeyName, Object hashKeyValue, Expected... expected)DeleteItemOutcomeTable. deleteItem(String hashKeyName, Object hashKeyValue, String rangeKeyName, Object rangeKeyValue, Expected... expected)PutItemOutcomeTable. putItem(Item item, Expected... expected)Method parameters in com.amazonaws.services.dynamodbv2.document with type arguments of type Expected Modifier and Type Method Description UpdateItemOutcomeTable. updateItem(PrimaryKey primaryKey, Collection<Expected> expected, AttributeUpdate... attributeUpdates)UpdateItemOutcomeTable. updateItem(String hashKeyName, Object hashKeyValue, String rangeKeyName, Object rangeKeyValue, Collection<Expected> expected, AttributeUpdate... attributeUpdates)UpdateItemOutcomeTable. 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 DeleteItemOutcomeDeleteItemApi. deleteItem(PrimaryKey primaryKey, Expected... expected)Conditional delete with the specified primary key and expected conditions.DeleteItemOutcomeDeleteItemApi. deleteItem(String hashKeyName, Object hashKeyValue, Expected... expected)Conditional delete with the specified hash-only primary key and expected conditions.DeleteItemOutcomeDeleteItemApi. deleteItem(String hashKeyName, Object hashKeyValue, String rangeKeyName, Object rangeKeyValue, Expected... expected)Conditional delete with the specified hash-and-range primary key and expected conditions.PutItemOutcomePutItemApi. 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 UpdateItemOutcomeUpdateItemApi. updateItem(PrimaryKey primaryKey, Collection<Expected> expected, AttributeUpdate... attributeUpdates)Updates an item with the attributes specified.UpdateItemOutcomeUpdateItemApi. 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.UpdateItemOutcomeUpdateItemApi. 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 DeleteItemSpecDeleteItemSpec. withExpected(Expected... expected)PutItemSpecPutItemSpec. withExpected(Expected... expected)UpdateItemSpecUpdateItemSpec. withExpected(Expected... expected)Method parameters in com.amazonaws.services.dynamodbv2.document.spec with type arguments of type Expected Modifier and Type Method Description DeleteItemSpecDeleteItemSpec. withExpected(Collection<Expected> expected)PutItemSpecPutItemSpec. withExpected(Collection<Expected> expected)UpdateItemSpecUpdateItemSpec. withExpected(Collection<Expected> expected)
-