Retrieves the next Page object using the next page token, or null if there are no more
pages. The hasNextPage() method can be used to check if a Page object is available.
Returns a future for the Page object, retrieved using the next page token. If there are no more
pages, returns a future which will immediately provide null. The hasNextPage() method can be
used to check if a Page object is available.
Returns an iterable that traverses all of the elements of the underlying data source. The data
is fetched lazily page by page, where each page may contain multiple elements. A new page is
fetched whenever the elements of any particular page are exhausted.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["This document outlines the `AbstractPage` class, which is a partial implementation of `AsyncPage` and part of the Google API Client Libraries for Java."],["The `AbstractPage` class is designed for managing pages of resources, supporting asynchronous operations and providing methods to navigate through these pages, such as `getNextPage()` and `hasNextPage()`."],["The latest version available in the provided versions list is 2.63.1, with the document also listing many other previous versions down to 2.7.1, with every release being links to the specific details of that version."],["The `AbstractPage` class provides methods to retrieve page-related information, such as `getNextPageToken()`, `getPageElementCount()`, `getRequest()`, and `getResponse()`, as well as to get the values of the page with the `getValues()` method."],["The `createPage()` and `createPageAsync()` methods are used to generate new pages, with a context and response provided to give the required info to create that new page."]]],[]]