ListFileSystemsOptions Class
- java.
lang. Object - com.
azure. storage. file. datalake. models. ListFileSystemsOptions
- com.
public final class ListFileSystemsOptions
Defines options available to configure the behavior of a call to listFileSystemsSegment on a DataLakeServiceAsyncClient object. See the constructor for details on each of the options. Null may be passed in place of an object of this type if no options are desirable.
Constructor Summary
Constructor | Description |
---|---|
ListFileSystemsOptions() |
Constructs an unpopulated ListFileSystemsOptions. |
Method Summary
Modifier and Type | Method and Description |
---|---|
File |
getDetails() |
Integer |
getMaxResultsPerPage()
Specifies the maximum number of paths to return, including all Path |
String |
getPrefix()
Filters the results to return only paths whose names begin with the specified prefix. |
List |
setDetails(FileSystemListDetails details) |
List |
setMaxResultsPerPage(Integer maxResultsPerPage)
Specifies the maximum number of paths to return, including all Path |
List |
setPrefix(String prefix)
Filters the results to return only paths whose names begin with the specified prefix. |
Methods inherited from java.lang.Object
Constructor Details
ListFileSystemsOptions
public ListFileSystemsOptions()
Constructs an unpopulated ListFileSystemsOptions.
Method Details
getDetails
public FileSystemListDetails getDetails()
Returns:
getMaxResultsPerPage
public Integer getMaxResultsPerPage()
Specifies the maximum number of paths to return, including all PathPrefix elements. If the request does not specify maxResultsPerPage or specifies a value greater than 5,000, the server will return up to 5,000 items.
Returns:
getPrefix
public String getPrefix()
Filters the results to return only paths whose names begin with the specified prefix.
Returns:
setDetails
public ListFileSystemsOptions setDetails(FileSystemListDetails details)
Parameters:
Returns:
setMaxResultsPerPage
public ListFileSystemsOptions setMaxResultsPerPage(Integer maxResultsPerPage)
Specifies the maximum number of paths to return, including all PathPrefix elements. If the request does not specify maxResultsPerPage or specifies a value greater than 5,000, the server will return up to 5,000 items.
Parameters:
Returns:
setPrefix
public ListFileSystemsOptions setPrefix(String prefix)
Filters the results to return only paths whose names begin with the specified prefix.
Parameters:
Returns:
Applies to
Azure SDK for Java