public class PartialList<T> extends Object
From the original class docs:
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 and Description | 
|---|
PartialList(int available,
           int start,
           int count,
           Iterable<T> list)  | 
PartialList(int available,
           int start,
           List<T> list)  | 
| Modifier and Type | Method and Description | 
|---|---|
static <T> PartialList<T> | 
empty()  | 
static <T> PartialList<T> | 
forAll(Iterable<T> iterable)  | 
int | 
getAvailable()  | 
int | 
getCount()  | 
List<T> | 
getList()  | 
int | 
getStart()  | 
public static <T> PartialList<T> empty()
public static <T> PartialList<T> forAll(Iterable<T> iterable)
public int getAvailable()
public int getStart()
public int getCount()
Copyright © 2003–2020 Atlassian. All rights reserved.