protobuf4j.orm.sql.expr.ArithmeticExpr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protobuf4j-sql Show documentation
Show all versions of protobuf4j-sql Show documentation
A Facility Framework to Develop with Google Protobuf
The newest version!
package protobuf4j.orm.sql.expr;
import protobuf4j.orm.sql.IExpression;
import javax.annotation.Nonnull;
/**
* 算术表达式:{@code + - * / DIV MOD | ^ ~}
*
*
* author: yuanwq
* date: 2018/7/11
*/
public class ArithmeticExpr extends AbstractBinaryExpr {
protected ArithmeticExpr(IExpression left, @Nonnull ArithmeticOp op, IExpression right) {
super(left, op, right);
}
}