public class ListContainerOptions extends ListOptions implements Cloneable
import static org.jclouds.blobstore.options.ListContainerOptions.Builder.*
BlobStore connection = // get connection
Future> list = connection.list("container",prefix("home/users").maxResults(1000));
Modifier and Type | Class and Description |
---|---|
static class |
ListContainerOptions.Builder |
static class |
ListContainerOptions.ImmutableListContainerOptions |
ListOptions.ImmutableListOptions
Modifier and Type | Field and Description |
---|---|
static ListContainerOptions.ImmutableListContainerOptions |
NONE |
Constructor and Description |
---|
ListContainerOptions() |
Modifier and Type | Method and Description |
---|---|
ListContainerOptions |
afterMarker(String marker)
Place to continue a listing at.
|
ListContainerOptions |
clone() |
ListContainerOptions |
delimiter(String delimiterString)
specify the delimiter to be used when listing
|
boolean |
equals(Object obj) |
String |
getDelimiter() |
String |
getDir()
Deprecated.
superseded by ListContainerOptions.getPrefix and ListContainerOptions.getDelimiter.
|
String |
getPrefix() |
int |
hashCode() |
ListContainerOptions |
inDirectory(String dir)
Deprecated.
superseded by ListContainerOptions.prefix and ListContainerOptions.delimiter.
|
boolean |
isDetailed() |
boolean |
isRecursive() |
ListContainerOptions |
maxResults(int maxKeys)
The maximum number of values you'd like to see in the response body.
|
ListContainerOptions |
prefix(String prefix)
Only list keys that start with the supplied prefix
|
ListContainerOptions |
recursive()
return a listing of all objects inside the store, recursively.
|
String |
toString() |
ListContainerOptions |
withDetails()
populate each result with detailed such as metadata even if it incurs extra requests to the
service.
|
getMarker, getMaxResults
public static final ListContainerOptions.ImmutableListContainerOptions NONE
@Deprecated public String getDir()
public String getDelimiter()
public boolean isRecursive()
public boolean isDetailed()
public String getPrefix()
@Deprecated public ListContainerOptions inDirectory(String dir)
public ListContainerOptions afterMarker(String marker)
afterMarker
in class ListOptions
public ListContainerOptions maxResults(int maxKeys)
maxResults
in class ListOptions
public ListContainerOptions recursive()
public ListContainerOptions withDetails()
public ListContainerOptions prefix(String prefix)
public ListContainerOptions delimiter(String delimiterString)
public ListContainerOptions clone()
clone
in class ListOptions
Copyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.