Class FunctionExpression

java.lang.Object
org.graylog.plugins.pipelineprocessor.ast.expressions.BaseExpression
org.graylog.plugins.pipelineprocessor.ast.expressions.FunctionExpression
All Implemented Interfaces:
Expression

public class FunctionExpression extends BaseExpression
  • Constructor Details

    • FunctionExpression

      public FunctionExpression(org.antlr.v4.runtime.Token start, FunctionArgs args)
  • Method Details

    • getFunction

      public Function<?> getFunction()
    • getArgs

      public FunctionArgs getArgs()
    • isConstant

      public boolean isConstant()
    • evaluateUnsafe

      public Object evaluateUnsafe(EvaluationContext context)
      Description copied from interface: Expression
      This method is allowed to throw exceptions. The outside world is supposed to call evaluate instead.
    • getType

      public Class getType()
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • children

      public Iterable<Expression> children()