- add(String, Class<? extends FenixHandler>) - 类 中的静态方法com.blinkfox.fenix.config.FenixConfig
-
- add(String, FenixHandlerFactory) - 类 中的静态方法com.blinkfox.fenix.config.FenixConfig
-
- add(String, String, Class<? extends FenixHandler>) - 类 中的静态方法com.blinkfox.fenix.config.FenixConfig
-
添加自定义标签、SQL 片段前缀和该 SQL 片段对应的
TagHandler 处理器实现的 class.
- add(String, String, FenixHandlerFactory) - 类 中的静态方法com.blinkfox.fenix.config.FenixConfig
-
- add(String, Class<? extends FenixHandler>, String) - 类 中的静态方法com.blinkfox.fenix.config.FenixConfig
-
添加自定义标签、SQL 操作符和该 SQL 片段对应的
TagHandler 处理器实现的 class.
- add(String, FenixHandlerFactory, String) - 类 中的静态方法com.blinkfox.fenix.config.FenixConfig
-
- add(String, String, Class<? extends FenixHandler>, String) - 类 中的静态方法com.blinkfox.fenix.config.FenixConfig
-
添加自定义标签、SQL 片段前缀、SQL 操作符和该 SQL 片段对应的
TagHandler 处理器实现的 class.
- add(String, String, FenixHandlerFactory, String) - 类 中的静态方法com.blinkfox.fenix.config.FenixConfig
-
- AND - 类 中的静态变量com.blinkfox.fenix.consts.SqlKeyConst
-
AND.
- AND - 类 中的静态变量com.blinkfox.fenix.consts.SymbolConst
-
AND.
- and() - 类 中的方法com.blinkfox.fenix.core.Fenix
-
拼接并带上 'AND' 关键字的字符串.
- and(String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
拼接并带上 'AND' 关键字和其他文本的字符串.
- andBetween(String, Object, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 BETWEEN 区间查询的 SQL 片段(当某一个值为 null 时,会是大于等于或小于等于的情形).
- andBetween(String, Object, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 BETWEEN 区间查询的 SQL 片段,如果 match 为 true 时则生成该条SQL片段,
否则不生成(当某一个值为 null 时,会是大于等于或小于等于的情形).
- andEndsWith(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 LIKE 按后缀匹配查询的 SQL 片段.
- andEndsWith(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 LIKE 按后缀匹配查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andEqual(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀等值查询的 SQL 片段.
- andEqual(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀等值查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andGreaterThan(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀大于查询的 SQL 片段.
- andGreaterThan(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀大于查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andGreaterThanEqual(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀大于等于查询的 SQL 片段.
- andGreaterThanEqual(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀大于等于查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andIn(String, Object[]) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 IN 范围查询的 SQL 片段.
- andIn(String, Object[], boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 IN 范围查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andIn(String, Collection<?>) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 IN 范围查询的 SQL 片段.
- andIn(String, Collection<?>, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 IN 范围查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andIsNotNull(String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀 " IS NOT NULL " 的 SQL 片段.
- andIsNotNull(String, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀 " IS NOT NULL " 的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andIsNull(String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀 " IS NULL " 的 SQL 片段.
- andIsNull(String, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀 " IS NULL " 的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andLessThan(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀小于查询的 SQL 片段.
- andLessThan(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀小于查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andLessThanEqual(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀小于等于查询的 SQL 片段.
- andLessThanEqual(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀小于等于查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andLike(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 LIKE 模糊查询的 SQL 片段.
- andLike(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 LIKE 模糊查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andLikePattern(String, String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
根据指定的模式字符串生成带 " AND " 前缀的 LIKE 模糊查询的 SQL 片段.
- andLikePattern(String, String, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
根据指定的模式字符串生成带 " AND " 前缀的 LIKE 模糊查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andNotEndsWith(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 " NOT LIKE " 按后缀匹配查询的 SQL 片段.
- andNotEndsWith(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 " NOT LIKE " 按后缀匹配查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andNotEqual(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀不等查询的 SQL 片段.
- andNotEqual(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀不等查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andNotIn(String, Object[]) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 " NOT IN " 范围查询的 SQL 片段.
- andNotIn(String, Object[], boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 " NOT IN " 范围查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andNotIn(String, Collection<?>) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 " NOT IN " 范围查询的 SQL 片段.
- andNotIn(String, Collection<?>, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 " NOT IN " 范围查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andNotLike(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 " NOT LIKE " 模糊查询的 SQL 片段.
- andNotLike(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 " NOT LIKE " 模糊查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andNotLikePattern(String, String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
根据指定的模式字符串生成带 " AND " 前缀的 " NOT LIKE " 模糊查询的 SQL 片段.
- andNotLikePattern(String, String, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
根据指定的模式字符串生成带 " AND " 前缀的 " NOT LIKE " 模糊查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andNotStartsWith(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 " NOT LIKE " 按前缀匹配查询的 SQL 片段.
- andNotStartsWith(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 " NOT LIKE " 按前缀匹配查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- andStartsWith(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 LIKE 按前缀匹配查询的 SQL 片段.
- andStartsWith(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " AND " 前缀的 LIKE 按前缀匹配查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- AS - 类 中的静态变量com.blinkfox.fenix.consts.SqlKeyConst
-
AS.
- as(String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
拼接并带上 'AS' 关键字的字符串.
- ASC - 类 中的静态变量com.blinkfox.fenix.consts.SqlKeyConst
-
ASC.
- asc() - 类 中的方法com.blinkfox.fenix.core.Fenix
-
拼接并带上 'ASC' 关键字的字符串.
- ATTR_CHILD - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
查找标签子节点的 XPATH 常量.
- ATTR_ELSE - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 “else” 的属性 XPATH 常量.
- ATTR_ENT - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 “end” 的属性 XPATH 常量.
- ATTR_FENIX_ID - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 “fenixId” 的属性 XPATH 常量.
- ATTR_FIELD - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 “field” 的属性 XPATH 常量.
- ATTR_ID - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 “ID” 的属性 XPATH 常量.
- ATTR_MATCH - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 “匹配” 的属性 XPATH 常量.
- ATTR_NAME_SPACE - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 “namespace” 的属性 XPATH 常量.
- ATTR_NAMESPACE - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
查找 XML 标签的命名空间常量.
- ATTR_PATTERN - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 “pattern” 的属性 XPATH 常量.
- ATTR_REMOVE - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 “removeIfExist” 的属性 XPATH 常量.
- ATTR_RESULT_TYPE - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 resultType 的属性 XPATH 常量.
- ATTR_START - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 “start” 的属性 XPATH 常量.
- ATTR_THEN - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 “then” 的属性 XPATH 常量.
- ATTR_VALUE - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 “value” 的属性 XPATH 常量.
- ATTR_WHEN - 类 中的静态变量com.blinkfox.fenix.consts.XpathConst
-
用于表示 “when” 的属性 XPATH 常量.
- newInstance() - 接口 中的方法com.blinkfox.fenix.core.FenixHandlerFactory
-
- newInstance() - 类 中的静态方法com.blinkfox.fenix.helper.ParamWrapper
-
创建新的 ParamWrapper 实例.
- newInstance(Map<String, Object>) - 类 中的静态方法com.blinkfox.fenix.helper.ParamWrapper
-
创建新的 ParamWrapper 实例,并传入需要作为上下文参数的 map.
- newInstance(String, Object) - 类 中的静态方法com.blinkfox.fenix.helper.ParamWrapper
-
创建新的 ParamWrapper 实例,并注入一对 key、value 的值.
- NodeNotFoundException - com.blinkfox.fenix.exception中的异常错误
-
Fenix XML 标签节点未找到时抛出的异常.
- NodeNotFoundException(String) - 异常错误 的构造器com.blinkfox.fenix.exception.NodeNotFoundException
-
附带日志消息参数的构造方法.
- NODETYPE_ELEMENT - 类 中的静态变量com.blinkfox.fenix.consts.Const
-
节点类型 - 元素节点.
- NODETYPE_TEXT - 类 中的静态变量com.blinkfox.fenix.consts.Const
-
节点类型 - 文本节点.
- NormalHandler - com.blinkfox.fenix.core.concrete中的类
-
- NormalHandler() - 类 的构造器com.blinkfox.fenix.core.concrete.NormalHandler
-
- NOT_EQUAL - 类 中的静态变量com.blinkfox.fenix.consts.SymbolConst
-
不等于.
- NOT_IN - 类 中的静态变量com.blinkfox.fenix.consts.SymbolConst
-
NOT IN.
- NOT_LIKE - 类 中的静态变量com.blinkfox.fenix.consts.SymbolConst
-
NOT LIKE.
- notEndsWith(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成 " NOT LIKE " 按后缀匹配查询的 SQL 片段.
- notEndsWith(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成 " NOT LIKE " 按后缀匹配查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- notEqual(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成不等查询的 SQL 片段.
- notEqual(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成不等查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- notIn(String, Object[]) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成 " NOT IN " 范围查询的 SQL 片段.
- notIn(String, Object[], boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成 " NOT IN " 范围查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- notIn(String, Collection<?>) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成 " NOT IN " 范围查询的 SQL 片段.
- notIn(String, Collection<?>, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成 " NOT IN " 范围查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- notLike(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成 " NOT LIKE " 模糊查询的 SQL 片段.
- notLike(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成 " NOT LIKE " 模糊查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- notLikePattern(String, String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
根据指定的模式字符串生成 " NOT LIKE " 模糊查询的 SQL 片段.
- notLikePattern(String, String, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
根据指定的模式字符串生成 " NOT LIKE " 模糊查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- notStartsWith(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成 " NOT LIKE " 按前缀匹配查询的 SQL 片段.
- notStartsWith(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成 " NOT LIKE " 按前缀匹配查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- OBJTYPE_ARRAY - 类 中的静态变量com.blinkfox.fenix.consts.Const
-
普通数组.
- OBJTYPE_COLLECTION - 类 中的静态变量com.blinkfox.fenix.consts.Const
-
Java 集合.
- OFFSET - 类 中的静态变量com.blinkfox.fenix.consts.SqlKeyConst
-
OFFSET.
- offset(String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
拼接并带上 'OFFSET' 关键字的字符串.
- ON - 类 中的静态变量com.blinkfox.fenix.consts.SqlKeyConst
-
ON.
- on(String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
拼接并带上 'ON' 关键字的字符串.
- OR - 类 中的静态变量com.blinkfox.fenix.consts.SqlKeyConst
-
OR.
- OR - 类 中的静态变量com.blinkfox.fenix.consts.SymbolConst
-
OR.
- or() - 类 中的方法com.blinkfox.fenix.core.Fenix
-
拼接并带上 'OR' 关键字的字符串.
- or(String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
拼接并带上 'OR' 关键字和其他文本的字符串.
- orBetween(String, Object, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 BETWEEN 区间查询的 SQL 片段(当某一个值为 null 时,会是大于等于或小于等于的情形).
- orBetween(String, Object, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 BETWEEN 区间查询的 SQL 片段,如果 match 为 true 时则生成该条SQL片段,
否则不生成(当某一个值为 null 时,会是大于等于或小于等于的情形).
- ORDER_BY - 类 中的静态变量com.blinkfox.fenix.consts.SqlKeyConst
-
ORDER BY.
- orderBy(String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
拼接并带上 'ORDER BY' 关键字的字符串.
- orEndsWith(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 LIKE 按后缀匹配查询的 SQL 片段.
- orEndsWith(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 LIKE 按后缀匹配查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orEqual(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀等值查询的 SQL 片段.
- orEqual(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀等值查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orGreaterThan(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀大于查询的 SQL 片段.
- orGreaterThan(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀大于查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orGreaterThanEqual(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀大于等于查询的 SQL 片段.
- orGreaterThanEqual(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀大于等于查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orIn(String, Object[]) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 IN 范围查询的 SQL 片段.
- orIn(String, Object[], boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 IN 范围查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orIn(String, Collection<?>) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 IN 范围查询的 SQL 片段.
- orIn(String, Collection<?>, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 IN 范围查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orIsNotNull(String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀 " IS NOT NULL " 的 SQL 片段.
- orIsNotNull(String, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀 " IS NOT NULL " 的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orIsNull(String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀 " IS NULL " 的 SQL 片段.
- orIsNull(String, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀" IS NULL "的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orLessThan(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀小于查询的 SQL 片段.
- orLessThan(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀小于查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orLessThanEqual(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀小于等于查询的 SQL 片段.
- orLessThanEqual(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀小于等于查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orLike(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 LIKE 模糊查询的 SQL 片段.
- orLike(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 LIKE 模糊查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orLikePattern(String, String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
根据指定的模式字符串生成带 " OR " 前缀的 LIKE 模糊查询的 SQL 片段.
- orLikePattern(String, String, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
根据指定的模式字符串生成带 " OR " 前缀的 LIKE 模糊查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orNotEndsWith(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 " NOT LIKE " 按后缀匹配查询的 SQL 片段.
- orNotEndsWith(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 " NOT LIKE " 按后缀匹配查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orNotEqual(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀不等查询的 SQL 片段.
- orNotEqual(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀不等查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orNotIn(String, Object[]) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 " NOT IN " 范围查询的 SQL 片段.
- orNotIn(String, Object[], boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 " NOT IN " 范围查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orNotIn(String, Collection<?>) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 " NOT IN " 范围查询的 SQL 片段.
- orNotIn(String, Collection<?>, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 " NOT IN " 范围查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orNotLike(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的" NOT LIKE "模糊查询的 SQL 片段.
- orNotLike(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的" NOT LIKE "模糊查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orNotLikePattern(String, String) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
根据指定的模式字符串生成带 " OR " 前缀的 " NOT LIKE " 模糊查询的 SQL 片段.
- orNotLikePattern(String, String, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
根据指定的模式字符串生成带 " OR " 前缀的 " NOT LIKE " 模糊查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orNotStartsWith(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 " NOT LIKE " 按前缀匹配查询的 SQL 片段.
- orNotStartsWith(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 " NOT LIKE " 按前缀匹配查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.
- orStartsWith(String, Object) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 LIKE 按前缀匹配查询的 SQL 片段.
- orStartsWith(String, Object, boolean) - 类 中的方法com.blinkfox.fenix.core.Fenix
-
生成带 " OR " 前缀的 LIKE 按前缀匹配查询的 SQL 片段,如果 match 为 true 时则生成该条 SQL 片段,否则不生成.