Package com.openai.core
Interface Page
-
- All Implemented Interfaces:
public interface Page<T extends Object>
An interface representing a single page, with items of type T, from a paginated endpoint response.
Implementations of this interface are expected to request additional pages synchronously. For asynchronous pagination, see the PageAsync interface.
-
-
Method Summary
-
-
Method Detail
-
hasNextPage
abstract Boolean hasNextPage()
Returns whether there's another page after this one.
The method generally doesn't make requests so the result depends entirely on the data in this page. If a significant amount of time has passed between requesting this page and calling this method, then the result could be stale.
-
-
-
-