cn.vonce.sql.enumerate.SqlOperator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vonce-sqlbean-core Show documentation
Show all versions of vonce-sqlbean-core Show documentation
This is the core project of Sqlbean.
The newest version!
package cn.vonce.sql.enumerate;
/**
* Sql 通用操作符
*
* @author Jovi
* @version 1.0
* @email [email protected]
* @date 2018年4月16日下午7:13:54
*/
public enum SqlOperator {
IS,
IS_NOT,
IS_NULL,
IS_NOT_NULL,
IN,
NOT_IN,
LIKE,
LIKE_L,
LIKE_R,
NOT_LIKE,
NOT_LIKE_L,
NOT_LIKE_R,
BETWEEN,
GREATER_THAN,
GREAT_THAN_OR_EQUAL_TO,
LESS_THAN,
LESS_THAN_OR_EQUAL_TO,
EQUAL_TO,
NOT_EQUAL_TO
/*, EXISTS, NOT_EXISTS*/
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy