Uses of Class
com.amazonaws.services.dynamodbv2.xspec.Condition
-
Packages that use Condition 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 Condition in com.amazonaws.services.dynamodbv2.xspec
Subclasses of Condition in com.amazonaws.services.dynamodbv2.xspec Modifier and Type Class Description classAndConditionRepresents an AND condition in a condition expression.classBetweenConditionRepresents a BETWEEN condition in a condition expression.classComparatorConditionRepresents a Comparator condition in building condition expression.classFunctionConditionRepresents a Function condition in building condition expression.classInConditionRepresents a IN condition in building condition expression.classNegationConditionRepresents a negation condition in building condition expressions.classOrConditionRepresents an OR condition in building condition expressions.classParenthesizedConditionAn explicitly parenthesized condition, ie '(' condition ')', used in building condition expressions.Methods in com.amazonaws.services.dynamodbv2.xspec with parameters of type Condition 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.AndConditionCondition. and(Condition that)Returns a new condition based on the conjunction of the current condition and the given condition.AndConditionOrCondition. and(Condition that)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> NegationConditionExpressionSpecBuilder. not(Condition cond)Returns a negation of the specified condition; used for building condition expression.OrConditionCondition. or(Condition that)Returns a new condition based on the disjunction of the current condition and the given condition.static <T> ParenthesizedConditionExpressionSpecBuilder. parenthesize(Condition condition)Returns an explicitly parenthesized condition, ie '(' condition ')' used in building condition expressions.ExpressionSpecBuilderExpressionSpecBuilder. withCondition(Condition condition)Fluent API to set the condition expression for a request.ExpressionSpecBuilderExpressionSpecBuilder. withKeyCondition(Condition keyCondition)
-