com.jpattern.orm.query.find.CustomFindWhere Maven / Gradle / Ivy
package com.jpattern.orm.query.find;
import com.jpattern.orm.exception.OrmException;
import com.jpattern.orm.query.clause.Where;
/**
*
* @author ufo
*
*/
public interface CustomFindWhere extends Where, CustomFindQueryCommon {
CustomFindQuery query();
/**
* Set the order by clause.
* @return
*/
CustomFindOrderBy orderBy() throws OrmException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy