Class ListParams
- java.lang.Object
-
- zowe.client.sdk.zosfiles.uss.input.ListParams
-
public class ListParams extends Object
Parameter container class for Unix System Services (USS) list operation- Version:
- 2.0
- Author:
- Frank Giordano
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classListParams.BuilderBuilder class for ListParams
-
Constructor Summary
Constructors Constructor Description ListParams(ListParams.Builder builder)ListParams constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OptionalIntgetDepth()Retrieve depth valueOptional<String>getGroup()Retrieve group valueOptionalIntgetMaxLength()Retrieve maxLength valueOptional<String>getMtime()Retrieve mtime valueOptional<String>getName()Retrieve name valueOptional<String>getPath()Retrieve path valueOptional<String>getPerm()Retrieve perm valueOptionalIntgetSize()Retrieve size valueOptional<ListFilterType>getType()Retrieve type valueOptional<String>getUser()Retrieve user valuebooleanisFilesys()Retrieve is filesys specifiedbooleanisSymlinks()Retrieve is symlinks specifiedStringtoString()Return string value representing ListParams object
-
-
-
Field Detail
-
filesys
public final boolean filesys
Whether to search all filesystems under the path, or just the same filesystem as the pathTrue means search all False means search same
-
symlinks
public final boolean symlinks
Whether to follow symlinks, or report themTrue means to report False means to follow
-
-
Constructor Detail
-
ListParams
public ListParams(ListParams.Builder builder)
ListParams constructor- Parameters:
builder- ListParams.Builder builder
-
-
Method Detail
-
getMaxLength
public OptionalInt getMaxLength()
Retrieve maxLength value- Returns:
- maxLength value
-
getSize
public OptionalInt getSize()
Retrieve size value- Returns:
- size value
-
getType
public Optional<ListFilterType> getType()
Retrieve type value- Returns:
- type value
-
getDepth
public OptionalInt getDepth()
Retrieve depth value- Returns:
- depth value
-
isFilesys
public boolean isFilesys()
Retrieve is filesys specified- Returns:
- boolean true or false
-
isSymlinks
public boolean isSymlinks()
Retrieve is symlinks specified- Returns:
- boolean true or false
-
-