Uses of Class
com.amazonaws.services.dynamodbv2.xspec.ListAppendFunction
-
Packages that use ListAppendFunction Package Description com.amazonaws.services.dynamodbv2.xspec A request-centric Expression Specification Builder package that can be used to construct valid expressions, and the respective name maps and value maps, for various DynamoDB requests in a typeful manner. -
-
Uses of ListAppendFunction in com.amazonaws.services.dynamodbv2.xspec
Methods in com.amazonaws.services.dynamodbv2.xspec that return ListAppendFunction Modifier and Type Method Description static <T> ListAppendFunction
ExpressionSpecBuilder. list_append(String path, List<? extends T> value)
Returns aListAppend
object which represents a list_append(operand, operand) function call; used for building expression.static <T> ListAppendFunction
ExpressionSpecBuilder. list_append(String path, T value)
Returns aListAppend
object which represents a list_append(operand, operand) function call; used for building expression.static <T> ListAppendFunction
ExpressionSpecBuilder. list_append(List<? extends T> value, String path)
Returns aListAppend
object which represents a list_append(operand, operand) function call; used for building expression.ListAppendFunction
L. listAppend(L that)
Returns anListAppend
for building expression that involves a list_append(operand, operand) function for the purpose of adding the values of the specified list attribute to the current list attribute.ListAppendFunction
L. listAppend(Object... values)
Returns anListAppend
for building expression that involves a list_append(operand, operand) function for the purpose of adding the specified values to the current list attribute.ListAppendFunction
L. listAppend(List<?> values)
Returns anListAppend
for building expression that involves a list_append(operand, operand) function for the purpose of adding the specified list of values to that of the current list attribute.Methods in com.amazonaws.services.dynamodbv2.xspec with parameters of type ListAppendFunction Modifier and Type Method Description SetAction
L. set(ListAppendFunction listAppendFunction)
Returns aSetAction
for adding the value of evaluating the specifiedListAppend
function as an attribute to an item.
-