PageImpl<T> Class

  • java.lang.Object
    • com.microsoft.azure.Page<T>
      • com.microsoft.azure.management.datalake.store.models.PageImpl<T>

Type Parameters

T

type of Azure resource

public class PageImpl

An instance of this class defines a page of Azure resources and a link to get the next page of resources, if any.

Method Summary

Modifier and Type Method and Description
List<T> items()

Gets the list of items.

String nextPageLink()

Gets the link to the next page.

PageImpl<T> setItems(List<T> items)

Sets the list of items.

PageImpl<T> setNextPageLink(String nextPageLink)

Sets the link to the next page.

Method Details

items

public List items()

Gets the list of items.

Returns:

the list of items in List.

nextPageLink

public String nextPageLink()

Gets the link to the next page.

Returns:

the link to the next page.

setItems

public PageImpl setItems(List items)

Sets the list of items.

Parameters:

items - the list of items in List.

Returns:

this Page object itself.

setNextPageLink

public PageImpl setNextPageLink(String nextPageLink)

Sets the link to the next page.

Parameters:

nextPageLink - the link to the next page.

Returns:

this Page object itself.

Applies to