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 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-04-09 UTC."],[[["The provided content outlines the `AbstractPage` class, a partial implementation of `AsyncPage`, which supports pagination for API responses in Java, as part of version 2.50.0 of the framework."],["The `AbstractPage` class is designed to work with generic types: `RequestT`, `ResponseT`, `ResourceT`, and `PageT`, providing a flexible framework for handling paged data."],["It allows retrieving the next page synchronously via `getNextPage()` or asynchronously via `getNextPageAsync()`, and these actions rely on the presence of a next page token obtained through `getNextPageToken()`."],["The class includes methods to retrieve the current page's data with `getValues()` and provides an `iterateAll()` method for lazily traversing all elements across all pages."],["The content also lists numerous earlier versions of the package, starting from 2.63.1(latest), indicating a history of updates and releases for this component."]]],[]]