Interface PagedResponse<T>

  • Type Parameters:
    T - The type of items in the page.
    All Superinterfaces:
    java.lang.AutoCloseable, java.io.Closeable, com.azure.android.core.util.paging.Page<java.lang.String,​T>, Response<java.util.List<T>>
    All Known Implementing Classes:
    PagedResponseBase

    public interface PagedResponse<T>
    extends com.azure.android.core.util.paging.Page<java.lang.String,​T>, Response<java.util.List<T>>, java.io.Closeable
    Response of a REST API that returns page.
    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.List<T> getValue()
      Returns the items in the page.
      • Methods inherited from interface java.io.Closeable

        close
      • Methods inherited from interface com.azure.android.core.util.paging.Page

        getContinuationToken, getElements
    • Method Detail

      • getValue

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