de.ec.sql.BeforeWhere 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;
public interface BeforeWhere extends QueryPart {
default Where where() {
return new Where(this);
}
default Where where(final ValueHolder values) {
return where().values(values);
}
default Where where(final Where where) {
return where.builder(this);
}
default Where whereSQL(final String sql) {
return where().sql(sql);
}
}