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

protobuf4j.orm.sql.expr.ArithmeticOp Maven / Gradle / Ivy

The newest version!
package protobuf4j.orm.sql.expr;

import protobuf4j.orm.sql.ISqlOperator;

/**
 * author: yuanwq
 * date: 2018/7/11
 */
public enum ArithmeticOp implements ISqlOperator {
  ADD("+"),

  SUBTRACT("-"),

  MULTIPLY("*"),

  DIVIDE("/"),

  DIV_ROUND(" DIV "),

  MOD(" MOD ");

  private final String op;

  ArithmeticOp(String op) {
    this.op = op;
  }

  @Override
  public String getOp() {
    return op;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy