Interface Page<C,T>
-
- Type Parameters:
C
- The type of the continuation token.T
- Type of items in the page response.
public interface Page<C,T>
Represents a paginated response from the service.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description C
getContinuationToken()
Gets the reference to the next page.java.util.List<T>
getElements()
Gets anList
of elements in the page.
-