
com.github.napp.database.ISelectQuery Maven / Gradle / Ivy
/**
*
*/
package com.github.napp.database;
import java.util.List;
/**
* @author Alexandru Bledea
* @since Sep 25, 2013
*/
public interface ISelectQuery extends IQuery, IWhereQuery {
/**
* @param max
*/
void setLimit(int max);
/**
* @param start
* @param max
*/
void setLimit(int start, int max);
/**
* @param property
* @param asc
*/
void setOrderBy(String property, boolean asc);
/**
* @return
*/
List executeQuery();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy