com.stanfy.enroscar.content.OffsetInfoProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enroscar-content Show documentation
Show all versions of enroscar-content Show documentation
Helper classes and extended abstractions for Android loaders, content resolvers, and DB access.
package com.stanfy.enroscar.content;
/**
* Interface for models that contain list of some elements and can provide extra information about
* limit and offset parameters required for remote requests.
*/
public interface OffsetInfoProvider {
boolean moreElementsAvailable(final String currentOffset);
}