Interface FstabEntryOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FstabEntry,FstabEntry.Builder
public interface FstabEntryOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFile()The mount point for the filesystem.com.google.protobuf.ByteStringgetFileBytes()The mount point for the filesystem.intgetFreq()Used by dump to determine which filesystems need to be dumped.StringgetMntops()Mount options associated with the filesystem.com.google.protobuf.ByteStringgetMntopsBytes()Mount options associated with the filesystem.intgetPassno()Used by the fsck(8) program to determine the order in which filesystem checks are done at reboot time.StringgetSpec()The block special device or remote filesystem to be mounted.com.google.protobuf.ByteStringgetSpecBytes()The block special device or remote filesystem to be mounted.StringgetVfstype()The type of the filesystem.com.google.protobuf.ByteStringgetVfstypeBytes()The type of the filesystem.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSpec
String getSpec()
The block special device or remote filesystem to be mounted.
string spec = 1;- Returns:
- The spec.
-
getSpecBytes
com.google.protobuf.ByteString getSpecBytes()
The block special device or remote filesystem to be mounted.
string spec = 1;- Returns:
- The bytes for spec.
-
getFile
String getFile()
The mount point for the filesystem.
string file = 2;- Returns:
- The file.
-
getFileBytes
com.google.protobuf.ByteString getFileBytes()
The mount point for the filesystem.
string file = 2;- Returns:
- The bytes for file.
-
getVfstype
String getVfstype()
The type of the filesystem.
string vfstype = 3;- Returns:
- The vfstype.
-
getVfstypeBytes
com.google.protobuf.ByteString getVfstypeBytes()
The type of the filesystem.
string vfstype = 3;- Returns:
- The bytes for vfstype.
-
getMntops
String getMntops()
Mount options associated with the filesystem.
string mntops = 4;- Returns:
- The mntops.
-
getMntopsBytes
com.google.protobuf.ByteString getMntopsBytes()
Mount options associated with the filesystem.
string mntops = 4;- Returns:
- The bytes for mntops.
-
getFreq
int getFreq()
Used by dump to determine which filesystems need to be dumped.
int32 freq = 5;- Returns:
- The freq.
-
getPassno
int getPassno()
Used by the fsck(8) program to determine the order in which filesystem checks are done at reboot time.
int32 passno = 6;- Returns:
- The passno.
-
-