![JAR search and dependency download from the Maven repository](/logo.png)
de.ec.sql.ConditionValues Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlbuilder Show documentation
Show all versions of sqlbuilder Show documentation
Java builder to create SQL statements
package de.ec.sql;
import java.util.ArrayList;
import java.util.List;
import lombok.AccessLevel;
import lombok.Getter;
@Getter(AccessLevel.PROTECTED)
public class ConditionValues> {
private final ConditionPart part;
private Object[] values;
protected ConditionValues(final ConditionPart part) {
this.part = part;
}
public T values(final Object... values) {
this.values = values;
return part.condition(this);
}
public T values(final Iterable
© 2015 - 2025 Weber Informatics LLC | Privacy Policy