com.github.schlak.universalQB.Definition.FixedValues.OrderByStrategy 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.FixedValues;
/**
* Created by Jonas Schlak on 15.10.2016.
*
* Represents the possible order strategies, that can be used in
* the query builder for sorting the result of an select.
*/
public enum OrderByStrategy {
ASC,DESC
}