public enum StorageControllerType extends java.lang.Enum<StorageControllerType>
IStorageController.getControllerType()
.
Interface ID: {A77D457D-66A3-4368-B24C-293D0F562A9F}Enum Constant and Description |
---|
BusLogic
A SCSI controller of the BusLogic variant.
|
I82078
A floppy disk controller; this is the only variant for floppy drives.
|
ICH6
An IDE controller of the ICH6 variant.
|
IntelAhci
An Intel AHCI SATA controller; this is the only variant for SATA.
|
LsiLogic
A SCSI controller of the LsiLogic variant.
|
LsiLogicSas
A variant of the LsiLogic controller using SAS.
|
Null
null value.
|
NVMe
An NVMe storage controller.
|
PIIX3
An IDE controller of the PIIX3 variant.
|
PIIX4
An IDE controller of the PIIX4 variant.
|
USB
Special USB based storage controller.
|
VirtioSCSI
Virtio SCSI storage controller.
|
Modifier and Type | Method and Description |
---|---|
static StorageControllerType |
fromValue(long v) |
static StorageControllerType |
fromValue(java.lang.String v) |
int |
value() |
static StorageControllerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StorageControllerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageControllerType Null
public static final StorageControllerType LsiLogic
public static final StorageControllerType BusLogic
public static final StorageControllerType IntelAhci
public static final StorageControllerType PIIX3
public static final StorageControllerType PIIX4
public static final StorageControllerType ICH6
public static final StorageControllerType I82078
public static final StorageControllerType LsiLogicSas
public static final StorageControllerType USB
public static final StorageControllerType NVMe
public static final StorageControllerType VirtioSCSI
public static StorageControllerType[] values()
for (StorageControllerType c : StorageControllerType.values()) System.out.println(c);
public static StorageControllerType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public static StorageControllerType fromValue(long v)
public static StorageControllerType fromValue(java.lang.String v)