Package org.jclouds.blobstore.options
Class ListOptions
java.lang.Object
org.jclouds.blobstore.options.ListOptions
- All Implemented Interfaces:
 Cloneable
- Direct Known Subclasses:
 ListContainerOptions,ListOptions.ImmutableListOptions
Contains options supported in the list container operation. 
Usage
The recommended way to instantiate a ListOptions object is to statically import ListOptions.* and invoke a static creation method followed by an instance mutator (if needed):
 import static org.jclouds.blobstore.options.ListOptions.Builder.*
 
 BlobStore connection = // get connection
 Futureinvalid input: '<'BoundedSortedSet> list = connection.list(maxResults(1000));
  - 
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic class - 
Field Summary
Fields - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionafterMarker(String marker) Place to continue a listing at.protected ListOptionsclone()maxResults(int maxKeys) The maximum number of values you'd like to see in the response body. 
- 
Field Details
- 
NONE
 
 - 
 - 
Constructor Details
- 
ListOptions
public ListOptions() 
 - 
 - 
Method Details
- 
getMaxResults
 - 
getMarker
 - 
afterMarker
Place to continue a listing at. This must be the value returned from the last list object, as not all blobstores use lexicographic lists. - 
maxResults
The maximum number of values you'd like to see in the response body. The server might return fewer than this many values, but will not return more. - 
clone
 
 -