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 , usePageResponse
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 Summary
Constructors Constructor Description PartialList(int available, int start, int count, Iterable<T> list)
Deprecated.PartialList(int available, int start, List<T> list)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static <T> PartialList<T>
empty()
Deprecated.static <T> PartialList<T>
forAll(Iterable<T> iterable)
Deprecated.int
getAvailable()
Deprecated.int
getCount()
Deprecated.List<T>
getList()
Deprecated.int
getStart()
Deprecated.
-
-
-
Method Detail
-
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.
-
-