本文整理汇总了Java中com.microsoft.azure.PagedList.iterator方法的典型用法代码示例。如果您正苦于以下问题:Java PagedList.iterator方法的具体用法?Java PagedList.iterator怎么用?Java PagedList.iterator使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.microsoft.azure.PagedList
的用法示例。
在下文中一共展示了PagedList.iterator方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: GroupPagedList
import com.microsoft.azure.PagedList; //导入方法依赖的package包/类
/**
* Creates an instance from a list of resource groups.
*
* @param resourceGroupList the list of resource groups
*/
public GroupPagedList(PagedList<ResourceGroup> resourceGroupList) {
this.resourceGroupItr = resourceGroupList.iterator();
setCurrentPage(nextPage("dummy"));
}
示例2: ChildListFlattener
import com.microsoft.azure.PagedList; //导入方法依赖的package包/类
/**
* Creates ChildListFlattener.
*
* @param parentList a paged list of parents
* @param childListLoader {@link ChildListLoader} for fetching child paged list associated any parent
*/
ChildListFlattener(PagedList<ParentT> parentList, ChildListLoader<ParentT, ChildT> childListLoader) {
this.parentItr = parentList.iterator();
this.childListLoader = childListLoader;
}