Class StringEquals

    • Constructor Detail

      • StringEquals

        public StringEquals​(FunctionNode functionNode)
    • Method Detail

      • ofExpressions

        public static StringEquals ofExpressions​(Expression left,
                                                 Expression right)
        Constructs a function that compare the left and right expressions for string equality.
        Parameters:
        left - the left expression.
        right - the right expression.
        Returns:
        a function instance representing the StringEquals comparison.
      • accept

        public <R> R accept​(ExpressionVisitor<R> visitor)
        Description copied from class: Expression
        Invoke the ExpressionVisitor functions for this expression.
        Specified by:
        accept in class Expression
        Type Parameters:
        R - the visitor return type.
        Parameters:
        visitor - the visitor to be invoked.
        Returns:
        the return value of the visitor.