Class PartialList<T>


  • @Deprecated
    public class PartialList<T>
    extends Object
    Deprecated.
    since 7.0.1 , use PageResponse
    A window into a list of unbounded length. To avoid the performance issues involved in retrieving lists of items that may have large numbers of members, the API instead uses PartialList
    • Constructor Detail

      • PartialList

        public PartialList​(int available,
                           int start,
                           List<T> list)
        Deprecated.
      • PartialList

        public PartialList​(int available,
                           int start,
                           int count,
                           Iterable<T> list)
        Deprecated.
    • Method Detail

      • empty

        public static <T> PartialList<T> empty()
        Deprecated.
      • getAvailable

        public int getAvailable()
        Deprecated.
      • getStart

        public int getStart()
        Deprecated.
      • getCount

        public int getCount()
        Deprecated.
      • getList

        public List<T> getList()
        Deprecated.