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

gu.sql2java.wherehelper.CompareOp Maven / Gradle / Ivy

package gu.sql2java.wherehelper;

/**
 * 算述比较运算符
 * @author guyadong
 * @since 3.25.0
 */
public enum CompareOp {
	GT(">"),GE(">="),LT("<"),LE("<="),EQ("=","=="),NE("!=");
	/** SQL运算符 */
	public final String op;
	/** java 运算符 */
	public final String jop;
	 private CompareOp(String op) {
		 this(op, op);
	 }
	 private CompareOp(String op,String jop) {
		 this.op = op;
		 this.jop = jop;
	 }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy