Class Page<T>


  • public class Page<T>
    extends Object
    • Field Detail

      • data

        protected List<T> data
      • size

        protected int size
      • start

        protected int start
      • total

        protected long total
      • order

        protected String order
    • Constructor Detail

      • Page

        public Page​(List<T> data,
                    int size,
                    int start,
                    long total)
      • Page

        public Page​(List<T> data,
                    int start,
                    long total)
    • Method Detail

      • getData

        public List<T> getData()
      • setData

        public void setData​(List<T> data)
      • getSize

        public int getSize()
      • setSize

        public void setSize​(int size)
      • getStart

        public int getStart()
      • setStart

        public void setStart​(int start)
      • getTotal

        public long getTotal()
      • setTotal

        public void setTotal​(long total)
      • getSort

        public String getSort()
      • setSort

        public void setSort​(String sort)
      • getOrder

        public String getOrder()
      • setOrder

        public void setOrder​(String order)