public interface

PagedResults

implements Iterable<T>
org.rundeck.api.util.PagedResults<T>

Class Overview

PagedResults contains a List of a certain type, and paging information.

Summary

Public Methods
abstract int getCount()
Number of items available in page
abstract int getMax()
Max number of items returned in page
abstract int getOffset()
Offset into all items
abstract List<T> getResults()
Results list
abstract int getTotal()
Total items to be paged
[Expand]
Inherited Methods
From interface java.lang.Iterable

Public Methods

public abstract int getCount ()

Number of items available in page

public abstract int getMax ()

Max number of items returned in page

public abstract int getOffset ()

Offset into all items

public abstract List<T> getResults ()

Results list

public abstract int getTotal ()

Total items to be paged