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-03-21 UTC."],[[["This document outlines the `AbstractPage` class in version 2.42.0 of the Google Cloud API Client Library for Java (gax), which is a partial implementation of `AsyncPage` for handling paginated data."],["The `AbstractPage` class uses type parameters `RequestT`, `ResponseT`, `ResourceT`, and `PageT` to manage requests, responses, resources, and pages, respectively, and implements methods for synchronous and asynchronous retrieval of pages and elements."],["The class offers methods to retrieve the next page (`getNextPage`, `getNextPageAsync`), check for the existence of a next page (`hasNextPage`), and iterate over all elements across multiple pages (`iterateAll`)."],["`AbstractPage` includes constructors and methods to handle `PageContext` and responses, providing functionalities like retrieving the next page token, getting page element count, and accessing request and response objects."],["A list of available versions ranging from 2.63.1 (latest) to 2.7.1 with associated links to documentation for each version of the `AbstractPage` class is provided at the beginning of this document."]]],[]]