com.github.schlak.universalQB.Definition.GeneralOperations.AddOrderByClause Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of universalQB Show documentation
Show all versions of universalQB Show documentation
The java lib universalQB can be used to access different databases
using formalized objects. These objects got converted into a query matching to the
syntactical rules of the database management system
package com.github.schlak.universalQB.Definition.GeneralOperations;
import com.github.schlak.universalQB.Definition.GeneralObjects.OrderByDefinition;
/**
* Created by jonas on 15.03.17.
*/
public interface AddOrderByClause {
void orderBy(OrderByDefinition orderByColumn);
}