org.virtualbox_4_2
Enum StorageControllerType

java.lang.Object
  extended by java.lang.Enum<StorageControllerType>
      extended by org.virtualbox_4_2.StorageControllerType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StorageControllerType>

public enum StorageControllerType
extends java.lang.Enum<StorageControllerType>

The exact variant of storage controller hardware presented to the guest; see IStorageController.getControllerType(). Interface ID: {8A412B8A-F43E-4456-BD37-B474F0879A58}


Enum Constant Summary
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.
PIIX3
          An IDE controller of the PIIX3 variant.
PIIX4
          An IDE controller of the PIIX4 variant.
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Null

public static final StorageControllerType Null
null value. Never used by the API.


LsiLogic

public static final StorageControllerType LsiLogic
A SCSI controller of the LsiLogic variant.


BusLogic

public static final StorageControllerType BusLogic
A SCSI controller of the BusLogic variant.


IntelAhci

public static final StorageControllerType IntelAhci
An Intel AHCI SATA controller; this is the only variant for SATA.


PIIX3

public static final StorageControllerType PIIX3
An IDE controller of the PIIX3 variant.


PIIX4

public static final StorageControllerType PIIX4
An IDE controller of the PIIX4 variant.


ICH6

public static final StorageControllerType ICH6
An IDE controller of the ICH6 variant.


I82078

public static final StorageControllerType I82078
A floppy disk controller; this is the only variant for floppy drives.


LsiLogicSas

public static final StorageControllerType LsiLogicSas
A variant of the LsiLogic controller using SAS.

Method Detail

values

public static StorageControllerType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (StorageControllerType c : StorageControllerType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static StorageControllerType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static StorageControllerType fromValue(long v)

fromValue

public static StorageControllerType fromValue(java.lang.String v)