Package com.io7m.waxmill.machines
Class WXMDeviceAHCIDisk
java.lang.Object
com.io7m.waxmill.machines.WXMDeviceAHCIDisk
- All Implemented Interfaces:
WXMDeviceType,WXMDeviceType.WXMDeviceAHCIDiskType
public final class WXMDeviceAHCIDisk extends java.lang.Object implements WXMDeviceType.WXMDeviceAHCIDiskType
Immutable implementation of
WXMDeviceType.WXMDeviceAHCIDiskType.
Use the builder to create immutable instances:
WXMDeviceAHCIDisk.builder().
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classWXMDeviceAHCIDisk.BuilderBuilds instances of typeWXMDeviceAHCIDisk.Nested classes/interfaces inherited from interface com.io7m.waxmill.machines.WXMDeviceType
WXMDeviceType.Kind, WXMDeviceType.WXMDeviceAHCIDiskType, WXMDeviceType.WXMDeviceAHCIOpticalDiskType, WXMDeviceType.WXMDeviceE1000Type, WXMDeviceType.WXMDeviceFramebufferType, WXMDeviceType.WXMDeviceHostBridgeType, WXMDeviceType.WXMDeviceLPCType, WXMDeviceType.WXMDeviceNetworkType, WXMDeviceType.WXMDevicePassthruType, WXMDeviceType.WXMDeviceVirtioBlockStorageType, WXMDeviceType.WXMDeviceVirtioNetworkType, WXMDeviceType.WXMLPCTTYNames, WXMDeviceType.WXMSectorSizesType, WXMDeviceType.WXMStorageBackendFileType, WXMDeviceType.WXMStorageBackendType, WXMDeviceType.WXMStorageBackendZFSVolumeType, WXMDeviceType.WXMTTYBackendFileType, WXMDeviceType.WXMTTYBackendNMDMType, WXMDeviceType.WXMTTYBackendStdioType, WXMDeviceType.WXMTTYBackendType -
Method Summary
Modifier and Type Method Description WXMDeviceType.WXMStorageBackendTypebackend()static WXMDeviceAHCIDisk.Builderbuilder()Creates a builder forWXMDeviceAHCIDisk.java.lang.Stringcomment()static WXMDeviceAHCIDiskcopyOf(WXMDeviceType.WXMDeviceAHCIDiskType instance)Creates an immutable copy of aWXMDeviceType.WXMDeviceAHCIDiskTypevalue.WXMDeviceSlotdeviceSlot()booleanequals(java.lang.Object another)This instance is equal to all instances ofWXMDeviceAHCIDiskthat have equal attribute values.inthashCode()Computes a hash code from attributes:deviceSlot,comment,backend.java.lang.StringtoString()Prints the immutable valueWXMDeviceAHCIDiskwith attribute values.WXMDeviceAHCIDiskwithBackend(WXMDeviceType.WXMStorageBackendType value)Copy the current immutable object by setting a value for thebackendattribute.WXMDeviceAHCIDiskwithComment(java.lang.String value)Copy the current immutable object by setting a value for thecommentattribute.WXMDeviceAHCIDiskwithDeviceSlot(WXMDeviceSlot value)Copy the current immutable object by setting a value for thedeviceSlotattribute.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.io7m.waxmill.machines.WXMDeviceType
isConsoleDevice, isStorageDeviceMethods inherited from interface com.io7m.waxmill.machines.WXMDeviceType.WXMDeviceAHCIDiskType
externalName, kind
-
Method Details
-
deviceSlot
- Specified by:
deviceSlotin interfaceWXMDeviceType- Specified by:
deviceSlotin interfaceWXMDeviceType.WXMDeviceAHCIDiskType- Returns:
- The value of the
deviceSlotattribute
-
comment
public java.lang.String comment()- Specified by:
commentin interfaceWXMDeviceType- Specified by:
commentin interfaceWXMDeviceType.WXMDeviceAHCIDiskType- Returns:
- The value of the
commentattribute
-
backend
- Specified by:
backendin interfaceWXMDeviceType.WXMDeviceAHCIDiskType- Returns:
- The value of the
backendattribute
-
withDeviceSlot
Copy the current immutable object by setting a value for thedeviceSlotattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for deviceSlot- Returns:
- A modified copy of the
thisobject
-
withComment
Copy the current immutable object by setting a value for thecommentattribute. An equals check used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for comment- Returns:
- A modified copy of the
thisobject
-
withBackend
Copy the current immutable object by setting a value for thebackendattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for backend- Returns:
- A modified copy of the
thisobject
-
equals
public boolean equals(java.lang.Object another)This instance is equal to all instances ofWXMDeviceAHCIDiskthat have equal attribute values.- Overrides:
equalsin classjava.lang.Object- Returns:
trueifthisis equal toanotherinstance
-
hashCode
public int hashCode()Computes a hash code from attributes:deviceSlot,comment,backend.- Overrides:
hashCodein classjava.lang.Object- Returns:
- hashCode value
-
toString
public java.lang.String toString()Prints the immutable valueWXMDeviceAHCIDiskwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
copyOf
Creates an immutable copy of aWXMDeviceType.WXMDeviceAHCIDiskTypevalue. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.- Parameters:
instance- The instance to copy- Returns:
- A copied immutable WXMDeviceAHCIDisk instance
-
builder
Creates a builder forWXMDeviceAHCIDisk.WXMDeviceAHCIDisk.builder() .setDeviceSlot(com.io7m.waxmill.machines.WXMDeviceSlot) // requireddeviceSlot.setComment(String) // optionalcomment.setBackend(com.io7m.waxmill.machines.WXMDeviceType.WXMStorageBackendType) // requiredbackend.build();- Returns:
- A new WXMDeviceAHCIDisk builder
-