Enum Class WhereType
- 所有已实现的接口:
Serializable,Comparable<WhereType>,Constable
WhereType
where 查询条件的一些类型 如果无法满足要求请使用 whereSQL
where 查询条件的一些类型 如果无法满足要求请使用 whereSQL
- 版本:
- 0.0.1
- 作者:
- scx567888
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
枚举常量概要
枚举常量枚举常量说明在之间等于大于大于等于IN不为空为空json 包含 一般用于 数组判断小于小于等于LikeLike 正则表达式不在之间不等于NOT INNot LikeLike 正则表达式 -
方法概要
-
枚举常量详细资料
-
IS_NULL
为空 -
IS_NOT_NULL
不为空 -
EQUAL
等于 -
NOT_EQUAL
不等于 -
LESS_THAN
小于 -
LESS_THAN_OR_EQUAL
小于等于 -
GREATER_THAN
大于 -
GREATER_THAN_OR_EQUAL
大于等于 -
LIKE
Like -
NOT_LIKE
Not Like -
LIKE_REGEX
Like 正则表达式 -
NOT_LIKE_REGEX
Like 正则表达式 -
IN
IN -
NOT_IN
NOT IN -
BETWEEN
在之间 -
NOT_BETWEEN
不在之间 -
JSON_CONTAINS
json 包含 一般用于 数组判断
-
-
方法详细资料
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- 返回:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- 参数:
name- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- 如果参数为空值
-
of
a- 参数:
whereTypeStr- a- 返回:
- a
-
paramSize
public int paramSize()获取参数数量- 返回:
- 参数数量
-