PagedResult<T> Class
- java.
lang. Object - com.
microsoft. bot. builder. PagedResult<T>
- com.
Type Parameters
- T
The type of items in the results.
public class PagedResult<T>
Page of results from an enumeration.
Constructor Summary
| Constructor | Description | |
|---|---|---|
| PagedResult() | ||
Method Summary
| Modifier and Type | Method and Description |
|---|---|
| java.lang.String |
getContinuationToken()
Gets the token for retrieving the next page of results. |
| java.util.List<T> |
getItems()
Gets the page of items. |
| void |
setContinuationToken(String withValue)
Sets the token for retrieving the next page of results. |
| void |
setItems(List<T> value)
Sets the page of items. |
Methods inherited from java.lang.Object
Constructor Details
PagedResult
public PagedResult()
Method Details
getContinuationToken
public String getContinuationToken()
Gets the token for retrieving the next page of results.
Returns:
getItems
public List
Gets the page of items.
Returns:
setContinuationToken
public void setContinuationToken(String withValue)
Sets the token for retrieving the next page of results.
Parameters:
setItems
public void setItems(List
Sets the page of items.
Parameters: