Class ContainerListOptions
- java.lang.Object
-
- org.openstack4j.model.storage.object.options.ContainerListOptions
-
public final class ContainerListOptions extends Object
List options used for Container and Object based queries- Author:
- Jeremy Unruh
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ContainerListOptionscreate()ContainerListOptionsdelimiter(char delimiter)Delimiter value, which returns the object names that are nested in the container.ContainerListOptionsendMarker(String endMarker)For a string value x, returns container names that are less in value than the specified marker.Map<String,String>getOptions()ContainerListOptionslimit(int limit)For an integer value n, limits the number of results to n.ContainerListOptionsmarker(String marker)For a string value x, returns container names that are greater in value than the specified marker.ContainerListOptionspath(String path)For a string value, returns the object names that are nested in the pseudo path.ContainerListOptionsstartsWith(String prefix)Prefix value.
-
-
-
Method Detail
-
create
public static ContainerListOptions create()
-
startsWith
public ContainerListOptions startsWith(String prefix)
Prefix value. Named items in the response begin with this value.- Parameters:
prefix- the prefix (starts with)- Returns:
- ContainerListOptions
-
limit
public ContainerListOptions limit(int limit)
For an integer value n, limits the number of results to n.
-
marker
public ContainerListOptions marker(String marker)
For a string value x, returns container names that are greater in value than the specified marker.- Parameters:
marker- the marker value- Returns:
- ContainerListOptions
-
endMarker
public ContainerListOptions endMarker(String endMarker)
For a string value x, returns container names that are less in value than the specified marker.- Parameters:
endMarker- the endMarker value- Returns:
- ContainerListOptions
-
delimiter
public ContainerListOptions delimiter(char delimiter)
Delimiter value, which returns the object names that are nested in the container.- Parameters:
delimiter- the delimiter value- Returns:
- ContainerListOptions
-
path
public ContainerListOptions path(String path)
For a string value, returns the object names that are nested in the pseudo path. Equivalent to setting delimiter to / and prefix to the path with a / at the end.- Parameters:
path- the path value- Returns:
- ContainerListOptions
-
-