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

com.jpattern.orm.query.clause.OrderBy Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.jpattern.orm.query.clause;


/**
 * 
 * @author Francesco Cina
 *
 * 18/giu/2011
 */
public interface OrderBy> extends SqlClause {

	T asc(String property);

	T ascNullsFirst(String property);

	T ascNullsLast(String property);

	T desc(String property);

	T descNullsFirst(String property);

	T descNullsLast(String property);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy