![JAR search and dependency download from the Maven repository](/logo.png)
de.ec.sql.BeforeGroupBy 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 BeforeGroupBy extends QueryPart {
default GroupBy groupBy() {
return new GroupBy(this);
}
default GroupBy groupBy(final String... columns) {
return groupBy().columns(columns);
}
default GroupBy groupBy(final GroupBy groupBy) {
return groupBy.builder(this);
}
default GroupBy groupBySQL(final String sql) {
return groupBy().sql(sql);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy