Class PagedResponse<T>

    • Constructor Detail

      • PagedResponse

        public PagedResponse()
      • PagedResponse

        public PagedResponse​(Integer start,
                             Long numFound)
      • PagedResponse

        public PagedResponse​(List<T> results)
      • PagedResponse

        public PagedResponse​(Integer start,
                             Long numFound,
                             List<T> results)
    • Method Detail

      • getStart

        public Integer getStart()
      • setStart

        public void setStart​(Integer start)
      • getNumFound

        public Long getNumFound()
      • setNumFound

        public void setNumFound​(Long numFound)
      • getResults

        public List<T> getResults()
      • setResults

        public void setResults​(List<T> results)