de.ec.sql.BeforeOrderBy 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 BeforeOrderBy extends QueryPart {
default OrderBy orderBy() {
return new OrderBy(this);
}
default OrderBy orderBy(final String... columns) {
return orderBy().columns(columns);
}
default OrderBy orderBy(final OrderBy orderBy) {
return orderBy.builder(this);
}
default OrderBy orderBySQL(final String sql) {
return orderBy().sql(sql);
}
}