|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectde.umass.lastfm.PaginatedResult<T>
public class PaginatedResult<T>
A PaginatedResult is returned by methods which result set might be so large that it needs
to be paginated. Each PaginatedResult contains the total number of result pages, the current
page and a Collection of entries for the current page.
| Method Summary | |
|---|---|
int |
getPage()
Returns the page number of this result. |
Collection<T> |
getPageResults()
Returns a list of entries of the type T for this page. |
int |
getTotalPages()
Returns the total number of pages available. |
boolean |
isEmpty()
Returns true if this Result contains no elements, which is the case for service calls that would have returned a
PaginatedResult but fail. |
Iterator<T> |
iterator()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public int getPage()
public Collection<T> getPageResults()
T for this page.
public int getTotalPages()
public boolean isEmpty()
true if this Result contains no elements, which is the case for service calls that would have returned a
PaginatedResult but fail.
true if this result contains no elementspublic Iterator<T> iterator()
iterator in interface Iterable<T>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||