All Downloads are FREE. Search and download functionalities are using the official Maven repository.

protobuf4j.orm.sql.IBinaryExpr Maven / Gradle / Ivy

The newest version!
package protobuf4j.orm.sql;

/**
 * @param  运算符类型
 * author: yuanwq
 * date: 2018/7/11
 */
public interface IBinaryExpr extends IExpression {
  /**
   * 左表达式
   */
  IExpression getLeft();

  /**
   * 右表达式
   */
  IExpression getRight();

  /**
   * 运算符
   */
  T getOp();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy