Class CursorPagedRequest

    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      protected boolean canEqual​(Object other)  
      boolean equals​(Object o)  
      int getCountLimit()
      Deprecated, for removal: This API element is subject to removal in a future version.
      use cursor pagination
      String getCursor()
      Cursor for the current page of results.
      int getOffset()
      Deprecated, for removal: This API element is subject to removal in a future version.
      use cursor pagination
      int hashCode()  
      void setCountLimit​(int countLimit)
      Deprecated, for removal: This API element is subject to removal in a future version.
      use cursor pagination
      void setCursor​(String cursor)
      Cursor for the current page of results.
      void setOffset​(int offset)
      Deprecated, for removal: This API element is subject to removal in a future version.
      use cursor pagination
      String toString()  
      • Methods inherited from class Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • CursorPagedRequest

        protected CursorPagedRequest​(String cursor,
                                     int offset,
                                     int limit)
      • CursorPagedRequest

        protected CursorPagedRequest​(String cursor,
                                     int offset,
                                     int limit,
                                     int countLimit)
      • CursorPagedRequest

        public CursorPagedRequest()
    • Method Detail

      • getOffset

        @Deprecated(forRemoval=true)
        public int getOffset()
        Deprecated, for removal: This API element is subject to removal in a future version.
        use cursor pagination
        Description copied from class: PagedRequest
        The first result to retrieve. If not set (offset = 0), results will be retrieved starting from row 0.
        Overrides:
        getOffset in class PagedRequest
      • setOffset

        @Deprecated(forRemoval=true)
        public void setOffset​(int offset)
        Deprecated, for removal: This API element is subject to removal in a future version.
        use cursor pagination
        Description copied from class: PagedRequest
        The first result to retrieve. If not set (offset = 0), results will be retrieved starting from row 0.
        Overrides:
        setOffset in class PagedRequest
      • getCountLimit

        @Deprecated(forRemoval=true)
        public int getCountLimit()
        Deprecated, for removal: This API element is subject to removal in a future version.
        use cursor pagination
        Description copied from class: PagedRequest
        Allows to limit the number of elements that will be counted. -1 will count everything and 0 will cause the count to be skipped
        Overrides:
        getCountLimit in class PagedRequest
      • setCountLimit

        @Deprecated(forRemoval=true)
        public void setCountLimit​(int countLimit)
        Deprecated, for removal: This API element is subject to removal in a future version.
        use cursor pagination
        Description copied from class: PagedRequest
        Allows to limit the number of elements that will be counted. -1 will count everything and 0 will cause the count to be skipped
        Overrides:
        setCountLimit in class PagedRequest
      • getCursor

        public String getCursor()
        Cursor for the current page of results. To retrieve the first page with cursor pagination you need to pass this parameter with an empty value. For the next pages, the value must be taken from the response (nextCursor property).
      • setCursor

        public void setCursor​(String cursor)
        Cursor for the current page of results. To retrieve the first page with cursor pagination you need to pass this parameter with an empty value. For the next pages, the value must be taken from the response (nextCursor property).
      • canEqual

        protected boolean canEqual​(Object other)
        Overrides:
        canEqual in class PagedRequest