Class ObjectListOptions
- java.lang.Object
-
- org.openstack4j.model.storage.object.options.ObjectListOptions
-
public final class ObjectListOptions extends Object
List options used for Object based queries- Author:
- Jeremy Unruh
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ObjectListOptionscreate()ObjectListOptionsdelimiter(char delimiter)Objects nested in the container are returned.ObjectListOptionsendMarker(String endMarker)Objects less in value than the specified marker are returned.Map<String,String>getOptions()ObjectListOptionslimit(int limit)list operation returns no more than this amount.ObjectListOptionsmarker(String marker)Objects greater in value than the specified marker are returned.ObjectListOptionspath(String path)Objects nested in the pseudo path are returned.ObjectListOptionsstartsWith(String prefix)Objects beginning with this substring are returned.
-
-
-
Method Detail
-
create
public static ObjectListOptions create()
-
limit
public ObjectListOptions limit(int limit)
list operation returns no more than this amount.
-
marker
public ObjectListOptions marker(String marker)
Objects greater in value than the specified marker are returned.
-
endMarker
public ObjectListOptions endMarker(String endMarker)
Objects less in value than the specified marker are returned.
-
startsWith
public ObjectListOptions startsWith(String prefix)
Objects beginning with this substring are returned.
-
delimiter
public ObjectListOptions delimiter(char delimiter)
Objects nested in the container are returned.
-
path
public ObjectListOptions path(String path)
Objects nested in the pseudo path are returned.
-
-