Class Operand

java.lang.Object
com.amazonaws.services.dynamodbv2.xspec.Operand
Direct Known Subclasses:
FunctionOperand, PathOperand

@Beta public abstract class Operand extends Object
Represents an operand for building expressions.

Underlying grammar:

operand
     : path          # PathOperand
     | literal       # LiteralOperand
     | function      # FunctionCall
     | '(' operand ')'
     ;
See Also:
  • Constructor Details

    • Operand

      public Operand()