Package com.io7m.waxmill.machines
Class WXMZFSVolume.Builder
java.lang.Object
com.io7m.waxmill.machines.WXMZFSVolume.Builder
- Enclosing class:
- WXMZFSVolume
public static final class WXMZFSVolume.Builder
extends java.lang.Object
Builds instances of type
WXMZFSVolume.
Initialize attributes and then invoke the build() method to create an
immutable instance.
Builder is not thread-safe and generally should not be stored in a field or collection,
but instead used immediately to create instances.
-
Method Summary
Modifier and Type Method Description WXMZFSVolumebuild()Builds a newWXMZFSVolume.WXMZFSVolume.Builderfrom(WXMZFSVolumeType instance)Fill a builder with attribute values from the providedWXMZFSVolumeTypeinstance.WXMZFSVolume.BuildersetDevice(java.nio.file.Path device)Initializes the value for thedeviceattribute.WXMZFSVolume.BuildersetName(java.lang.String name)Initializes the value for thenameattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedWXMZFSVolumeTypeinstance. Regular attribute values will be replaced with those from the given instance. Absent optional values will not replace present values.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
setName
Initializes the value for thenameattribute.- Parameters:
name- The value for name- Returns:
thisbuilder for use in a chained invocation
-
setDevice
Initializes the value for thedeviceattribute.- Parameters:
device- The value for device- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newWXMZFSVolume.- Returns:
- An immutable instance of WXMZFSVolume
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-