Interface Pageable
-
- All Known Subinterfaces:
VcsBranches,VcsRepositories
- All Known Implementing Classes:
BitBucketVcsRepositories,GitHubVcsBranches,GitHubVcsRepositories,GitLabVcsBranches,GitLabVcsRepositories
public interface Pageable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegergetTotalCount()booleanhasMore()StringnextPage()
-
-
-
Method Detail
-
hasMore
boolean hasMore()
- Returns:
- true if there are further pages of the data available
-
nextPage
@Nullable String nextPage()
- Returns:
- a next page id (e.g. page number) if available, null otherwise
-
getTotalCount
@Nullable Integer getTotalCount()
- Returns:
- total number of repositories matching the search criteria (if available), null otherwise
-
-