All Downloads are FREE. Search and download functionalities are using the official Maven repository.

devutility.internal.data.PaginationUtils Maven / Gradle / Ivy

There is a newer version: 1.3.8.1
Show newest version
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