public class ListOptions extends Object implements Cloneable
import static org.jclouds.blobstore.options.ListOptions.Builder.*
BlobStore connection = // get connection
Future
- Author:
- Adrian Cole
-
-
Nested Class Summary
Nested Classes
Modifier and Type
Class and Description
static class
ListOptions.Builder
static class
ListOptions.ImmutableListOptions
-
Field Summary
Fields
Modifier and Type
Field and Description
static ListOptions.ImmutableListOptions
NONE
-
Constructor Summary
Constructors
Constructor and Description
ListOptions()
-
Method Summary
Methods
Modifier and Type
Method and Description
ListOptions
afterMarker(String marker)
Place to continue a listing at.
protected ListOptions
clone()
String
getMarker()
Integer
getMaxResults()
ListOptions
maxResults(int maxKeys)
The maximum number of values you'd like to see in the response body.
-
-
Field Detail
-
NONE
public static final ListOptions.ImmutableListOptions NONE
-
Method Detail
-
getMaxResults
public Integer getMaxResults()
-
getMarker
public String getMarker()
-
afterMarker
public ListOptions afterMarker(String marker)
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
public ListOptions maxResults(int maxKeys)
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
protected ListOptions clone()
Copyright © 2009-2013 jclouds. All Rights Reserved.