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

com.jpattern.orm.query.find.FindQuery Maven / Gradle / Ivy

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

import com.jpattern.orm.exception.OrmException;

/**
 * 
 * @author Francesco Cina
 *
 * 18/giu/2011
 */
public interface FindQuery extends FindFrom, FindQueryCommon {

	/**
	 * Set the where clause.
	 * @return
	 */
	FindWhere where() throws OrmException;

	/**
	 * Set the order by clause.
	 * @return
	 */
	FindOrderBy orderBy() throws OrmException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy