All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.ec.sql.BeforeOrderBy Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy