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 WhereQueryBuilder.between(String fieldName, Object value1, Object value2, WhereOption... options) 两者之间static WhereQueryBuilder.eq(String fieldName, Object value, WhereOption... options) 相等static WhereQueryBuilder.ge(String fieldName, Object value, WhereOption... options) 大于等于static WhereQueryBuilder.gt(String fieldName, Object value, WhereOption... options) 大于static WhereQueryBuilder.in(String fieldName, Object value, WhereOption... options) 在其中static WhereQueryBuilder.isNotNull(String fieldName, WhereOption... options) 不为空static WhereQueryBuilder.isNull(String fieldName, WhereOption... options) 为空static WhereQueryBuilder.jsonContains(String fieldName, Object value, WhereOption... options) 包含 : 一般用于 JSON 格式字段 区别于 instatic WhereQueryBuilder.le(String fieldName, Object value, WhereOption... options) 小于等于static WhereQueryBuilder.like(String fieldName, Object value, WhereOption... options) like : 默认会在首尾添加 %static WhereQueryBuilder.likeRegex(String fieldName, String value, WhereOption... options) like : 根据 SQL 表达式进行判断static WhereQueryBuilder.lt(String fieldName, Object value, WhereOption... options) 小于static WhereQueryBuilder.ne(String fieldName, Object value, WhereOption... options) 不相等static WhereQueryBuilder.notBetween(String fieldName, Object value1, Object value2, WhereOption... options) 不处于两者之间static WhereQueryBuilder.notIn(String fieldName, Object value, WhereOption... options) 不在其中static WhereQueryBuilder.notLike(String fieldName, Object value, WhereOption... options) not like : 默认会在首尾添加 %static WhereQueryBuilder.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 TypeMethodDescriptionfinal LogicLogic.addWhere(String name, WhereType whereType, Object value1, Object value2, WhereOption... options) final LogicLogic.between(String fieldName, Object value1, Object value2, WhereOption... options) final LogicLogic.eq(String fieldName, Object value, WhereOption... options) final LogicLogic.ge(String fieldName, Object value, WhereOption... options) final LogicLogic.gt(String fieldName, Object value, WhereOption... options) final LogicLogic.in(String fieldName, Object value, WhereOption... options) final LogicLogic.isNotNull(String fieldName, WhereOption... options) final LogicLogic.isNull(String fieldName, WhereOption... options) final LogicLogic.jsonContains(String fieldName, Object value, WhereOption... options) final LogicLogic.le(String fieldName, Object value, WhereOption... options) final LogicLogic.like(String fieldName, Object value, WhereOption... options) final LogicLogic.likeRegex(String fieldName, String value, WhereOption... options) final LogicLogic.lt(String fieldName, Object value, WhereOption... options) final LogicLogic.ne(String fieldName, Object value, WhereOption... options) final LogicLogic.notBetween(String fieldName, Object value1, Object value2, WhereOption... options) final LogicLogic.notIn(String fieldName, Object value, WhereOption... options) final LogicLogic.notLike(String fieldName, Object value, WhereOption... options) final LogicLogic.notLikeRegex(String fieldName, String value, WhereOption... options) Constructors in cool.scx.data.query with parameters of type WhereOption