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

com.github.zw201913.entity.WhereInParam Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.github.zw201913.entity;

import lombok.Data;
import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.lang3.ArrayUtils;

import java.util.LinkedList;
import java.util.List;

/**
 * @author zouwei
 * @className WhereInParam
 * @date: 2022/8/17 上午10:21
 * @description:
 */
@Data
public class WhereInParam {

	private String field;

	private List values;

	private WhereInParam(final String field, Double... values) {
		this.field = field;
		this.values = new LinkedList<>();
		if (ArrayUtils.isNotEmpty(values)) {
			for (Double value : values) {
				this.values.add(value);
			}
		}
	}

	private WhereInParam(final String field, List values) {
		this.field = field;
		this.values = new LinkedList<>();
		if (CollectionUtils.isNotEmpty(values)) {
			for (Double value : values) {
				this.values.add(value);
			}
		}
	}

	public static WhereInParam createInstance(final String field, Double... values) {
		return new WhereInParam(field, values);
	}

	public static WhereInParam createInstance(final String field, List values) {
		return new WhereInParam(field, values);
	}

	public void parseToList(List list) {
		list.add("WHEREIN");
		list.add(this.field);
		for (Double value : this.values) {
			list.add(value.toString());
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy