de.ec.sql.BeforeWith 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 BeforeWith extends QueryPart {
default With with(final String name) {
return new With(this, name);
}
default With with(final With with) {
return with.builder(this);
}
default With withSQL(final String sql) {
return with((String) null).sql(sql);
}
}