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

com.abubusoft.kripton.android.PagedResult Maven / Gradle / Ivy

Go to download

Kripton Persistence Library for Android platform - core module for android modules

There is a newer version: 8.2.0-rc.4
Show newest version
package com.abubusoft.kripton.android;

public interface PagedResult extends PageRequest {

	/**
	 * Returns the total amount of elements.
	 *
	 * @return the total amount of elements
	 */
	int getTotalElements();
	
	/**
	 * Returns the number of total pages.
	 *
	 * @return the number of total pages
	 */
	int getTotalPages();
	
	boolean isLast();
	
	public boolean isFirst();
	
	boolean hasNext();
	
	boolean hasPrevious();
		
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy