
com.alibaba.qlexpress4.runtime.operator.BinaryOperator Maven / Gradle / Ivy
package com.alibaba.qlexpress4.runtime.operator;
import com.alibaba.qlexpress4.QLOptions;
import com.alibaba.qlexpress4.exception.ErrorReporter;
import com.alibaba.qlexpress4.runtime.QRuntime;
import com.alibaba.qlexpress4.runtime.Value;
/**
* 二元操作符
* Author: DQinYuan
* date 2022/1/12 2:34 下午
*/
public interface BinaryOperator extends Operator {
/**
* 执行操作符计算
*
* @param left left operand
* @param right right operand
* @param qRuntime runtime of qlexpress
* @param qlOptions options of current script run
* @param errorReporter error reporter
* @return result of operator
*/
Object execute(Value left, Value right, QRuntime qRuntime, QLOptions qlOptions, ErrorReporter errorReporter);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy