com.abubusoft.kripton.android.PagedResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kripton-android-core Show documentation
Show all versions of kripton-android-core Show documentation
Kripton Persistence Library for Android platform - core module for android modules
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();
}