devutility.internal.data.PaginationUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devutility.internal Show documentation
Show all versions of devutility.internal Show documentation
Utilities for Java development
package devutility.internal.data;
public class PaginationUtils {
/**
* Calculate pages count for given total count and page size.
* @param totalCount: Total records count.
* @param pageSize: Page size
* @return int
*/
public static int calculatePagesCount(int totalCount, int pageSize) {
if (totalCount % pageSize == 0) {
return totalCount / pageSize;
}
return totalCount / pageSize + 1;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy