Pagination
Certain API operations return lists of objects. When the number of objects in the list is large, the API will paginate the results.
The Files.com Java SDK provides multiple ways to paginate through lists of objects.
Automatic Pagination
The listAutoPaging function automatically paginates and loads each page into memory.
Manual Pagination
The loadNextPage/hasNextPage functions allow for manual pagination and loading of each page into memory.
Load All Items
The all function loads all items into memory.