- java.lang.Object
-
- zowe.client.sdk.zosfiles.uss.model.UnixZfs
-
public final class UnixZfs extends Object
UssZfsItem object representing a zfs item from Unix System Services (USS) list operation. Immutable class using Jackson for JSON parsing.- Version:
- 5.0
- Author:
- Frank Giordano
-
-
Constructor Summary
Constructors Constructor Description UnixZfs(String name, String mountpoint, String fstname, String status, List<String> modeList, Long dev, Long fstype, Long bsize, Long bavail, Long blocks, String sysname, Long readibc, Long writeibc, Long diribc, Long returnedRows, Long totalRows, boolean moreRows)Jackson constructor for UnixZfs
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LonggetBavail()Retrieve bavail valueLonggetBlocks()Retrieve blocks valueLonggetBsize()Retrieve bsize valueLonggetDev()Retrieve dev valueLonggetDiribc()Retrieve diribc valueStringgetFstname()Retrieve fstname valueLonggetFstype()Retrieve fstype valueStringgetMode()Retrieve mode valueStringgetMountpoint()Retrieve mountpoint valueStringgetName()Retrieve name valueLonggetReadibc()Retrieve readibc valueLonggetReturnedRows()Retrieve returnedRows valueStringgetStatus()Retrieve status valueStringgetSysname()Retrieve sysname valueLonggetTotalRows()Retrieve totalRows valueLonggetWriteibc()Retrieve writeibc valuebooleanisMoreRows()Retrieve moreRows valueStringtoString()Return string value representing UnixZfs object
-
-
-
Constructor Detail
-
UnixZfs
public UnixZfs(String name, String mountpoint, String fstname, String status, List<String> modeList, Long dev, Long fstype, Long bsize, Long bavail, Long blocks, String sysname, Long readibc, Long writeibc, Long diribc, Long returnedRows, Long totalRows, boolean moreRows)
Jackson constructor for UnixZfs- Parameters:
name- zfs namemountpoint- mount pointfstname- FST namestatus- status valuemodeList- mode list stringdev- device idfstype- file system typebsize- block sizebavail- available blocksblocks- block countsysname- target system namereadibc- read I/O countwriteibc- write I/O countdiribc- directory I/O countreturnedRows- returned rowstotalRows- total rowsmoreRows- true if more rows are available
-
-
Method Detail
-
getName
public String getName()
Retrieve name value- Returns:
- name string value
-
getMountpoint
public String getMountpoint()
Retrieve mountpoint value- Returns:
- mountpoint string value
-
getFstname
public String getFstname()
Retrieve fstname value- Returns:
- fstname string value
-
getStatus
public String getStatus()
Retrieve status value- Returns:
- status string value
-
getMode
public String getMode()
Retrieve mode value- Returns:
- mode string value
-
getDev
public Long getDev()
Retrieve dev value- Returns:
- dev long value
-
getFstype
public Long getFstype()
Retrieve fstype value- Returns:
- fstype long value
-
getBsize
public Long getBsize()
Retrieve bsize value- Returns:
- bsize long value
-
getBavail
public Long getBavail()
Retrieve bavail value- Returns:
- bavail long value
-
getBlocks
public Long getBlocks()
Retrieve blocks value- Returns:
- blocks long value
-
getSysname
public String getSysname()
Retrieve sysname value- Returns:
- sysname string value
-
getReadibc
public Long getReadibc()
Retrieve readibc value- Returns:
- readibc long value
-
getWriteibc
public Long getWriteibc()
Retrieve writeibc value- Returns:
- writeibc long value
-
getDiribc
public Long getDiribc()
Retrieve diribc value- Returns:
- diribc long value
-
getReturnedRows
public Long getReturnedRows()
Retrieve returnedRows value- Returns:
- returnedRows long value
-
getTotalRows
public Long getTotalRows()
Retrieve totalRows value- Returns:
- totalRows long value
-
isMoreRows
public boolean isMoreRows()
Retrieve moreRows value- Returns:
- moreRows boolean value
-
-