View Javadoc
1   package net.avcompris.commons3.api;
2   
3   import javax.annotation.Nullable;
4   
5   public interface Entities<T extends Entity> {
6   
7   	T[] getResults();
8   
9   	int getStart();
10  
11  	int getLimit();
12  
13  	@Nullable
14  	String getSqlWhereClause();
15  
16  	int getSize();
17  
18  	int getTotal();
19  
20  	int getTookMs();
21  }