io.crnk.jpa.query.JpaQueryExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crnk-jpa Show documentation
Show all versions of crnk-jpa Show documentation
JSON API framework for Java
package io.crnk.jpa.query;
import java.util.List;
public interface JpaQueryExecutor {
/**
* @return Count the number of objects returned without any paging applied.
*/
long getTotalRowCount();
T getUniqueResult(boolean nullable);
List getResultList();
JpaQueryExecutor setLimit(int limit);
JpaQueryExecutor setOffset(int offset);
JpaQueryExecutor setWindow(int offset, int limit);
JpaQueryExecutor setCached(boolean cached);
JpaQueryExecutor fetch(List attrPath);
Class getEntityClass();
List getResultTuples();
int getLimit();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy