|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.jclouds.blobstore.options.ListOptions
public class ListOptions
Contains options supported in the list container operation.
import static org.jclouds.blobstore.options.ListOptions.Builder.*
BlobStore connection = // get connection
Future> list = connection.list(maxResults(1000));
- Author:
- Adrian Cole
Nested Class Summary
static class
ListOptions.Builder
static class
ListOptions.ImmutableListOptions
Field Summary
static ListOptions.ImmutableListOptions
NONE
Constructor Summary
ListOptions()
Method Summary
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.
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Field Detail
NONE
public static final ListOptions.ImmutableListOptions NONE
Constructor Detail
ListOptions
public ListOptions()
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 lexigraphic 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()
- Overrides:
clone
in class Object
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
PREV CLASS
NEXT CLASS
FRAMES
NO FRAMES
SUMMARY: NESTED | FIELD | CONSTR | METHOD
DETAIL: FIELD | CONSTR | METHOD
Copyright © 2009-2011 jclouds. All Rights Reserved.