Class ContainerListOptions


  • public final class ContainerListOptions
    extends Object
    List options used for Container and Object based queries
    Author:
    Jeremy Unruh
    • Method Detail

      • 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