Uses of Class
com.amazonaws.services.dynamodbv2.xspec.BetweenCondition
-
Packages that use BetweenCondition 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 BetweenCondition in com.amazonaws.services.dynamodbv2.xspec
Methods in com.amazonaws.services.dynamodbv2.xspec that return BetweenCondition Modifier and Type Method Description BetweenCondition
N. between(Number low, Number high)
Returns aBetweenCondition
that represents a BETWEEN comparison (that evaluates to true if the value of the current attribute is greater than or equal to the given low value, and less than or equal to the given high value) for building condition expression.BetweenCondition
S. between(String low, String high)
Returns aBetweenCondition
that represents a BETWEEN comparison (that evaluates to true if the value of the current attribute is greater than or equal to the given low value, and less than or equal to the given high value) for building condition expression.
-