All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dromara.hutool.db.sql.ConditionGroup Maven / Gradle / Ivy

There is a newer version: 6.0.0.M3
Show newest version
/*
 * Copyright (c) 2013-2024 Hutool Team and hutool.cn
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.dromara.hutool.db.sql;

import org.dromara.hutool.core.array.ArrayUtil;
import org.dromara.hutool.core.text.StrUtil;

import java.util.List;

/**
 * 条件组
* 用于构建复杂where条件 * * @author tjh * @since 5.7.21 */ public class ConditionGroup extends Condition { private static final long serialVersionUID = 1L; /** * 条件列表 */ private Condition[] conditions; /** * 追加条件 * * @param conditions 条件列表 */ public void addConditions(final Condition... conditions) { if (null == this.conditions) { this.conditions = conditions; } else { this.conditions = ArrayUtil.addAll(this.conditions, conditions); } } /** * 将条件组转换为条件字符串,使用括号包裹,并回填占位符对应的参数值 * * @param paramValues 参数列表,用于回填占位符对应参数值 * @return 条件字符串 */ @Override public String toString(final List paramValues) { if (ArrayUtil.isEmpty(conditions)) { return StrUtil.EMPTY; } final StringBuilder conditionStrBuilder = StrUtil.builder(); conditionStrBuilder.append("("); // 将组内的条件构造为SQL,因为toString,会进行递归,处理所有的条件组 conditionStrBuilder.append(ConditionBuilder.of(this.conditions).build(paramValues)); conditionStrBuilder.append(")"); return conditionStrBuilder.toString(); } }