Class 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 Detail

      • FunctionOperand

        public FunctionOperand()