Uses of Enum Class
cool.scx.data.query.WhereOption
Packages that use WhereOption
-
Uses of WhereOption in cool.scx.data
Methods in cool.scx.data with parameters of type WhereOptionModifier and TypeMethodDescriptionstatic WhereBodyQueryBuilder.between(String fieldName, Object value1, Object value2, WhereOption... options) 两者之间static WhereBodyQueryBuilder.eq(String fieldName, Object value, WhereOption... options) 相等static WhereBodyQueryBuilder.ge(String fieldName, Object value, WhereOption... options) 大于等于static WhereBodyQueryBuilder.gt(String fieldName, Object value, WhereOption... options) 大于static WhereBodyQueryBuilder.in(String fieldName, Object value, WhereOption... options) 在其中static WhereBodyQueryBuilder.isNotNull(String fieldName, WhereOption... options) 不为空static WhereBodyQueryBuilder.isNull(String fieldName, WhereOption... options) 为空static WhereBodyQueryBuilder.jsonContains(String fieldName, Object value, WhereOption... options) 包含 : 一般用于 JSON 格式字段 区别于 instatic WhereBodyQueryBuilder.le(String fieldName, Object value, WhereOption... options) 小于等于static WhereBodyQueryBuilder.like(String fieldName, Object value, WhereOption... options) like : 默认会在首尾添加 %static WhereBodyQueryBuilder.likeRegex(String fieldName, String value, WhereOption... options) like : 根据 SQL 表达式进行判断static WhereBodyQueryBuilder.lt(String fieldName, Object value, WhereOption... options) 小于static WhereBodyQueryBuilder.ne(String fieldName, Object value, WhereOption... options) 不相等static WhereBodyQueryBuilder.notBetween(String fieldName, Object value1, Object value2, WhereOption... options) 不处于两者之间static WhereBodyQueryBuilder.notIn(String fieldName, Object value, WhereOption... options) 不在其中static WhereBodyQueryBuilder.notLike(String fieldName, Object value, WhereOption... options) not like : 默认会在首尾添加 %static WhereBodyQueryBuilder.notLikeRegex(String fieldName, String value, WhereOption... options) not like : 根据 SQL 表达式进行判断 -
Uses of WhereOption in cool.scx.data.query
Methods in cool.scx.data.query that return WhereOptionModifier and TypeMethodDescriptionstatic WhereOptionReturns the enum constant of this class with the specified name.static WhereOption[]WhereOption.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in cool.scx.data.query with parameters of type WhereOptionModifier and TypeMethodDescriptionWhereBodySet.add0(String name, WhereType whereType, WhereOption... options) 添加一个查询条件WhereBodySet.add1(String name, WhereType whereType, Object value1, WhereOption... options) 添加一个查询条件WhereBodySet.add2(String name, WhereType whereType, Object value1, Object value2, WhereOption... options) 添加一个查询条件WhereBodySet.between(String fieldName, Object value1, Object value2, WhereOption... options) 两者之间WhereBodySet.eq(String fieldName, Object value, WhereOption... options) 相等WhereBodySet.ge(String fieldName, Object value, WhereOption... options) 大于等于WhereBodySet.gt(String fieldName, Object value, WhereOption... options) 大于WhereBodySet.in(String fieldName, Object value, WhereOption... options) 在其中WhereBodySet.isNotNull(String fieldName, WhereOption... options) 不为空WhereBodySet.isNull(String fieldName, WhereOption... options) 为空WhereBodySet.jsonContains(String fieldName, Object value, WhereOption... options) 包含 : 一般用于 JSON 格式字段 区别于 inWhereBodySet.le(String fieldName, Object value, WhereOption... options) 小于等于WhereBodySet.like(String fieldName, Object value, WhereOption... options) like : 默认会在首尾添加 %WhereBodySet.likeRegex(String fieldName, String value, WhereOption... options) like : 根据 SQL 表达式进行判断WhereBodySet.lt(String fieldName, Object value, WhereOption... options) 小于WhereBodySet.ne(String fieldName, Object value, WhereOption... options) 不相等WhereBodySet.notBetween(String fieldName, Object value1, Object value2, WhereOption... options) 不处于两者之间WhereBodySet.notIn(String fieldName, Object value, WhereOption... options) 不在其中WhereBodySet.notLike(String fieldName, Object value, WhereOption... options) not like : 默认会在首尾添加 %WhereBodySet.notLikeRegex(String fieldName, String value, WhereOption... options) not like : 根据 SQL 表达式进行判断Constructors in cool.scx.data.query with parameters of type WhereOption