Interface UserActionList


public interface UserActionList
A List of UserActions
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(Collection<UserAction> userActions)
    Add a complete Collection of UserActions to this collection.
    void
    add(UserAction annotation)
    Add a single UserAction to this collection.
    int
    Return the maximum number of results to collect.
    int
    Return the offset of result lists to skip over to get these results.
    int
    Return the total number of possible results for this query.
    Return a list of the UserActions in this Collection.
    void
    setLimit(int limit)
    Set the upper limit of the total number of results to return upon request.
    void
    setOffset(int offset)
    Set the offset * limit to skip over before returning the results.
    void
    setTotal(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

      void add(UserAction annotation)
      Add a single UserAction to this collection.
    • add

      void add(Collection<UserAction> userActions)
      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.