Class Page<T>

java.lang.Object
com.flowable.platform.common.Page<T>

public class Page<T> extends Object
  • Field Details

    • data

      protected List<T> data
    • size

      protected int size
    • start

      protected int start
    • total

      protected long total
    • sort

      protected String sort
    • order

      protected String order
  • Constructor Details

    • Page

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

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

    • 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)