cn.hutool.db.sql.ConditionGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.db.sql;
import cn.hutool.core.util.ArrayUtil;
import cn.hutool.core.util.StrUtil;
import java.util.List;
/**
* 条件组
* 用于构建复杂where条件
*
* @author tjh
* @since 5.7.21
*/
public class ConditionGroup extends Condition {
/**
* 条件列表
*/
private Condition[] conditions;
/**
* 追加条件
*
* @param conditions 条件列表
*/
public void addConditions(Condition... conditions) {
if (null == this.conditions) {
this.conditions = conditions;
} else {
this.conditions = ArrayUtil.addAll(this.conditions, conditions);
}
}
/**
* 将条件组转换为条件字符串,使用括号包裹,并回填占位符对应的参数值
*
* @param paramValues 参数列表,用于回填占位符对应参数值
* @return 条件字符串
*/
@Override
public String toString(List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy