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

org.openlca.collaboration.model.ResultInfo Maven / Gradle / Ivy

package org.openlca.collaboration.model;

public record ResultInfo(int currentPage, int pageSize, int count, int totalCount) {

	public int pageCount() {
		return (int) Math.ceil(totalCount / (double) pageSize);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy