Uses of Class
com.amazonaws.services.dynamodbv2.xspec.NS
-
Packages that use NS 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 NS in com.amazonaws.services.dynamodbv2.xspec
Methods in com.amazonaws.services.dynamodbv2.xspec that return NS Modifier and Type Method Description static NS
ExpressionSpecBuilder. NS(String path)
Creates a path operand that refers to a number-set attribute for the purpose of building expressions.Methods in com.amazonaws.services.dynamodbv2.xspec that return types with arguments of type NS Modifier and Type Method Description static IfNotExistsFunction<NS>
ExpressionSpecBuilder. if_not_exists(String path, Number... defaultValue)
Returns anIfNotExists
object which represents an if_not_exists(path, operand) function call; used for building expression.IfNotExistsFunction<NS>
NS. ifNotExists(NS defaultValue)
Returns anIfNotExistsFunction
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.IfNotExistsFunction<NS>
NS. ifNotExists(Number... defaultValue)
Returns anIfNotExistsFunction
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.<T extends Number>
IfNotExistsFunction<NS>NS. ifNotExists(Set<T> 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 NS Modifier and Type Method Description ComparatorCondition
NS. eq(NS that)
Returns a comparator condition (that evaluates to true if the value of the current attribute is equal to that of the specified attribute) for building condition expression.IfNotExistsFunction<NS>
NS. ifNotExists(NS defaultValue)
Returns anIfNotExistsFunction
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.ComparatorCondition
NS. ne(NS that)
Returns a comparator condition (that evaluates to true if the value of the current attribute is not equal to the set of specified values) for building condition expression.SetAction
NS. set(NS source)
Returns aSetAction
object used for building update expression.Method parameters in com.amazonaws.services.dynamodbv2.xspec with type arguments of type NS Modifier and Type Method Description SetAction
NS. set(IfNotExistsFunction<NS> ifNotExistsFunction)
Returns aSetAction
object used for building update expression.
-