Class AvgFunction

All Implemented Interfaces:
Iterable<GroupingExpression>

public class AvgFunction extends FunctionNode
This class represents a min-function in a GroupingExpression. It evaluates to a number that equals the average of the results of all arguments.
Author:
Simon Thoresen Hult, bratseth
  • Constructor Details

    • AvgFunction

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