Package com.io7m.waxmill.machines
Interface WXMZFSFilesystemType
- All Known Implementing Classes:
WXMZFSFilesystem
@Immutable
public interface WXMZFSFilesystemType
A ZFS filesystem.
-
Method Summary
Modifier and Type Method Description default voidcheckPreconditions()Check preconditions for the type.java.nio.file.PathmountPoint()The path at which the filesystem is mounted.java.lang.Stringname()The name of the filesystem.
-
Method Details
-
name
java.lang.String name()The name of the filesystem. This is the name that would be, for example, passed tozfs create -V name/of/fs.- Returns:
- The name of the filesystem
-
mountPoint
java.nio.file.Path mountPoint()The path at which the filesystem is mounted.- Returns:
- The filesystem mount point
-
checkPreconditions
@Check default void checkPreconditions()Check preconditions for the type.
-