Interface PagedResponse<T>

Type Parameters:
T - The type of items in the page.
All Superinterfaces:
AutoCloseable, Closeable, ContinuablePage<String,T>, Page<T>, Response<List<T>>
All Known Implementing Classes:
AutocompletePagedResponse, PagedResponseBase, SearchPagedResponse, SuggestPagedResponse

public interface PagedResponse<T> extends Page<T>, Response<List<T>>, Closeable
Response of a REST API that returns page.
See Also:
  • Method Details

    • getValue

      default List<T> getValue()
      Returns the items in the page.
      Specified by:
      getValue in interface Response<T>
      Returns:
      The items in the page.