org.springframework.social.facebook.api
Class PagingParameters
java.lang.Object
org.springframework.social.facebook.api.PagingParameters
- All Implemented Interfaces:
- Serializable
public class PagingParameters
- extends Object
- implements Serializable
Carries parameters to describe a paged set of results.
- See Also:
- Serialized Form
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PagingParameters
public PagingParameters(Integer limit,
Integer offset,
Long since,
Long until)
- Constructs a PagedListParameters.
- Parameters:
limit
- The number of items to limit the list to.offset
- The offset into the full result list to start this list at.since
- The beginning timestamp bound for time-sensitive content (e.g., posts, comments, etc).until
- The ending timestamp bound for time-sensitive content (e.g., posts, comments, etc).
PagingParameters
public PagingParameters(Integer limit,
Integer offset,
Long since,
Long until,
String after,
String before)
getLimit
public Integer getLimit()
getOffset
public Integer getOffset()
getSince
public Long getSince()
getUntil
public Long getUntil()
getAfter
public String getAfter()
getBefore
public String getBefore()
toMap
public MultiValueMap<String,String> toMap()