Interface UserActionList
- All Known Implementing Classes:
UserActionListImpl
public interface UserActionList
A List of
UserActions-
Method Summary
Modifier and TypeMethodDescriptionvoidadd(Collection<UserAction> userActions) Add a complete Collection of UserActions to this collection.voidadd(UserAction annotation) Add a single UserAction to this collection.intgetLimit()Return the maximum number of results to collect.intReturn the offset of result lists to skip over to get these results.intgetTotal()Return the total number of possible results for this query.Return a list of the UserActions in this Collection.voidsetLimit(int limit) Set the upper limit of the total number of results to return upon request.voidsetOffset(int offset) Set the offset * limit to skip over before returning the results.voidsetTotal(int total) Set the total number of results for this particular query.
-
Method Details
-
setTotal
void setTotal(int total) Set the total number of results for this particular query. -
setLimit
void setLimit(int limit) Set the upper limit of the total number of results to return upon request. -
setOffset
void setOffset(int offset) Set the offset * limit to skip over before returning the results. -
add
Add a single UserAction to this collection. -
add
Add a complete Collection of UserActions to this collection. -
getTotal
int getTotal()Return the total number of possible results for this query. -
getLimit
int getLimit()Return the maximum number of results to collect. -
getOffset
int getOffset()Return the offset of result lists to skip over to get these results. -
getUserActions
List<UserAction> getUserActions()Return a list of the UserActions in this Collection.
-