Uses of Class
com.amazonaws.services.dynamodbv2.xspec.M
-
Packages that use M 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 M in com.amazonaws.services.dynamodbv2.xspec
Methods in com.amazonaws.services.dynamodbv2.xspec that return M Modifier and Type Method Description static M
ExpressionSpecBuilder. M(String path)
Creates a path operand that refers to a map attribute for the purpose of building expressions.Methods in com.amazonaws.services.dynamodbv2.xspec that return types with arguments of type M Modifier and Type Method Description static IfNotExistsFunction<M>
ExpressionSpecBuilder. if_not_exists(String path, Map<String,?> defaultValue)
Returns anIfNotExists
object which represents an if_not_exists(path, operand) function call; used for building expression.IfNotExistsFunction<M>
M. ifNotExists(M defaultValue)
IfNotExistsFunction<M>
M. ifNotExists(Map<String,?> defaultValue)
Returns anIfNotExists
object which represents an if_not_exists(path, operand) function call where path refers to that of the current path operand; used for building expressions.Methods in com.amazonaws.services.dynamodbv2.xspec with parameters of type M Modifier and Type Method Description ComparatorCondition
M. eq(M that)
IfNotExistsFunction<M>
M. ifNotExists(M defaultValue)
ComparatorCondition
M. ne(M that)
SetAction
M. set(M source)
Returns aSetAction
object used for building update expression.Method parameters in com.amazonaws.services.dynamodbv2.xspec with type arguments of type M Modifier and Type Method Description SetAction
M. set(IfNotExistsFunction<M> ifNotExistsFunction)
Returns aSetAction
object used for building update expression.
-