Class FunctionOperand

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

@Beta public abstract class FunctionOperand extends Operand
Represents a function call in building expression.

Underlying grammar:

 function
      : ID '(' operand (',' operand)* ')'    # FunctionCall
      ;
 
  • Constructor Details

    • FunctionOperand

      public FunctionOperand()