Class StrCatFunction

All Implemented Interfaces:
Iterable<GroupingExpression>

public class StrCatFunction extends FunctionNode
This class represents a strcat-function in a GroupingExpression. It evaluates to a string that equals the contatenation of the string results of all arguments in the order they were given to the constructor.
Author:
Simon Thoresen Hult, bratseth
  • Constructor Details

    • StrCatFunction

      public StrCatFunction(GroupingExpression arg1, GroupingExpression arg2, GroupingExpression... argN)
      Constructs a new instance of this class.
      Parameters:
      arg1 - The first compulsory argument, must evaluate to a string.
      arg2 - The second compulsory argument, must evaluate to a string.
      argN - The optional arguments, must evaluate to a string.
  • Method Details