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

com.abubusoft.kripton.android.PageNavigator 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 PageNavigator extends PageRequest {
	/**
	 * Navigate to the first page.
	 */
	void firstPage();

	/**
	 * Navigate to last page
	 */
	void lastPage();

	/**
	 * Navigates to next page.
	 */
	void nextPage();

	/**
	 * Navigates to previous page.
	 */
	void previousPage();

	/**
	 * Navigates to the offset. This method is an alternative to page.
	 * 
	 * @param value
	 */
	void setOffset(int value);

	/**
	 * Navigates to the page. This method is an alternative to offset.
	 * 
	 * @param page
	 */
	void setPage(int page);

	/**
	 * Set page size
	 */
	void setPageSize(int pageSize);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy