Uses of Class
com.amazonaws.services.dynamodbv2.xspec.ParenthesizedCondition
-
Packages that use ParenthesizedCondition 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 ParenthesizedCondition in com.amazonaws.services.dynamodbv2.xspec
Methods in com.amazonaws.services.dynamodbv2.xspec that return ParenthesizedCondition Modifier and Type Method Description static <T> ParenthesizedConditionExpressionSpecBuilder. _(Condition condition)A short hand for callingExpressionSpecBuilder.parenthesize(Condition)to explicitly parenthesize a given condition for building condition expressions.static ParenthesizedConditionParenthesizedCondition. getInstance(Condition condition)Returns a parenthesized condition for the given condition if the given condition is not already a parenthesized condition; or the original condition otherwise.static <T> ParenthesizedConditionExpressionSpecBuilder. parenthesize(Condition condition)Returns an explicitly parenthesized condition, ie '(' condition ')' used in building condition expressions.
-