Package com.azure.storage.blob.models
Class PageList
- java.lang.Object
-
- com.azure.storage.blob.models.PageList
-
public final class PageList extends Object
the list of pages.
-
-
Constructor Summary
Constructors Constructor Description PageList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ClearRange>getClearRange()Get the clearRange property: The ClearRange property.List<PageRange>getPageRange()Get the pageRange property: The PageRange property.PageListsetClearRange(List<ClearRange> clearRange)Set the clearRange property: The ClearRange property.PageListsetPageRange(List<PageRange> pageRange)Set the pageRange property: The PageRange property.
-
-
-
Method Detail
-
getPageRange
public List<PageRange> getPageRange()
Get the pageRange property: The PageRange property.- Returns:
- the pageRange value.
-
setPageRange
public PageList setPageRange(List<PageRange> pageRange)
Set the pageRange property: The PageRange property.- Parameters:
pageRange- the pageRange value to set.- Returns:
- the PageList object itself.
-
getClearRange
public List<ClearRange> getClearRange()
Get the clearRange property: The ClearRange property.- Returns:
- the clearRange value.
-
setClearRange
public PageList setClearRange(List<ClearRange> clearRange)
Set the clearRange property: The ClearRange property.- Parameters:
clearRange- the clearRange value to set.- Returns:
- the PageList object itself.
-
-