org.virtualbox_4_1
Enum VirtualSystemDescriptionType

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

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

Used with IVirtualSystemDescription to describe the type of a configuration value. Interface ID: {303C0900-A746-4612-8C67-79003E91F459}


Enum Constant Summary
CDROM
           
CPU
           
Description
           
Floppy
           
HardDiskControllerIDE
           
HardDiskControllerSAS
           
HardDiskControllerSATA
           
HardDiskControllerSCSI
           
HardDiskImage
           
Ignore
           
License
           
Memory
           
Miscellaneous
           
Name
           
NetworkAdapter
           
OS
           
Product
           
ProductUrl
           
SettingsFile
          Not used/implemented right now, will be added later in 4.1.x.
SoundCard
           
USBController
           
Vendor
           
VendorUrl
           
Version
           
 
Method Summary
static VirtualSystemDescriptionType fromValue(long v)
           
static VirtualSystemDescriptionType fromValue(java.lang.String v)
           
 int value()
           
static VirtualSystemDescriptionType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VirtualSystemDescriptionType[] 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

Ignore

public static final VirtualSystemDescriptionType Ignore

OS

public static final VirtualSystemDescriptionType OS

Name

public static final VirtualSystemDescriptionType Name

Product

public static final VirtualSystemDescriptionType Product

Vendor

public static final VirtualSystemDescriptionType Vendor

Version

public static final VirtualSystemDescriptionType Version

ProductUrl

public static final VirtualSystemDescriptionType ProductUrl

VendorUrl

public static final VirtualSystemDescriptionType VendorUrl

Description

public static final VirtualSystemDescriptionType Description

License

public static final VirtualSystemDescriptionType License

Miscellaneous

public static final VirtualSystemDescriptionType Miscellaneous

CPU

public static final VirtualSystemDescriptionType CPU

Memory

public static final VirtualSystemDescriptionType Memory

HardDiskControllerIDE

public static final VirtualSystemDescriptionType HardDiskControllerIDE

HardDiskControllerSATA

public static final VirtualSystemDescriptionType HardDiskControllerSATA

HardDiskControllerSCSI

public static final VirtualSystemDescriptionType HardDiskControllerSCSI

HardDiskControllerSAS

public static final VirtualSystemDescriptionType HardDiskControllerSAS

HardDiskImage

public static final VirtualSystemDescriptionType HardDiskImage

Floppy

public static final VirtualSystemDescriptionType Floppy

CDROM

public static final VirtualSystemDescriptionType CDROM

NetworkAdapter

public static final VirtualSystemDescriptionType NetworkAdapter

USBController

public static final VirtualSystemDescriptionType USBController

SoundCard

public static final VirtualSystemDescriptionType SoundCard

SettingsFile

public static final VirtualSystemDescriptionType SettingsFile
Not used/implemented right now, will be added later in 4.1.x.

Method Detail

values

public static VirtualSystemDescriptionType[] 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 (VirtualSystemDescriptionType c : VirtualSystemDescriptionType.values())
    System.out.println(c);

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

valueOf

public static VirtualSystemDescriptionType 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 VirtualSystemDescriptionType fromValue(long v)

fromValue

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