NotExpr
Represents a NOT expression as described in DynamoDB's logical evaluations documentation. This expression will be true if !operand (i.e., operand evaluates to false).
Functions
Link copied to clipboard
Accepts a visitor that is traversing an expression tree by dispatching to a subtype implementation. Subtype implementations MUST call the ExpressionVisitor.visit overload for their concrete type (effectively forming a double dispatch) and MUST return the resulting value.