Class PartialList<T>

java.lang.Object
com.atlassian.confluence.legacyapi.model.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 Details

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

    • empty

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

      public static <T> PartialList<T> forAll(Iterable<T> iterable)
      Deprecated.
    • getAvailable

      public int getAvailable()
      Deprecated.
    • getStart

      public int getStart()
      Deprecated.
    • getCount

      public int getCount()
      Deprecated.
    • getList

      public List<T> getList()
      Deprecated.