Class Condition
java.lang.Object
com.amazonaws.services.dynamodbv2.xspec.Condition
- Direct Known Subclasses:
AndCondition
,BetweenCondition
,ComparatorCondition
,FunctionCondition
,InCondition
,NegationCondition
,OrCondition
,ParenthesizedCondition
Represents a condition for building condition expression.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns a new condition based on the conjunction of the current condition and the given condition.final NegationCondition
negate()
Returns a new condition based on the negation of the current condition.Returns a new condition based on the disjunction of the current condition and the given condition.
-
Constructor Details
-
Condition
public Condition()
-
-
Method Details
-
negate
Returns a new condition based on the negation of the current condition. -
and
Returns a new condition based on the conjunction of the current condition and the given condition.- Parameters:
that
- given condition.
-
or
Returns a new condition based on the disjunction of the current condition and the given condition.- Parameters:
that
- given condition.
-