org.virtualbox_7_0
Enum AudioDriverType

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

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

Host audio driver type. Interface ID: {32B4ACFD-79AB-4B7E-9A1C-92E99F4E000B}


Enum Constant Summary
ALSA
          Advanced Linux Sound Architecture (Linux hosts only).
CoreAudio
          CoreAudio (Mac hosts only).
Default
          Use the default audio driver automatically determined for the host that this VirtualBox instance is running on.
DirectSound
          DirectSound (Windows hosts only).
MMPM
          Reserved for historical reasons.
Null
          Null value, also means "dummy audio driver".
OSS
          Open Sound System (Linux / Unix hosts only).
Pulse
          PulseAudio (Linux hosts only).
SolAudio
          Reserved for historical reasons.
WAS
          Windows Audio Session (Windows hosts only).
WinMM
          Windows multimedia (Windows hosts only, not supported at the moment).
 
Method Summary
static AudioDriverType fromValue(long v)
           
static AudioDriverType fromValue(java.lang.String v)
           
 int value()
           
static AudioDriverType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AudioDriverType[] 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

Default

public static final AudioDriverType Default
Use the default audio driver automatically determined for the host that this VirtualBox instance is running on. Useful for VMs which need to run on different host OSes.


Null

public static final AudioDriverType Null
Null value, also means "dummy audio driver".


OSS

public static final AudioDriverType OSS
Open Sound System (Linux / Unix hosts only).


ALSA

public static final AudioDriverType ALSA
Advanced Linux Sound Architecture (Linux hosts only).


Pulse

public static final AudioDriverType Pulse
PulseAudio (Linux hosts only).


WinMM

public static final AudioDriverType WinMM
Windows multimedia (Windows hosts only, not supported at the moment).


DirectSound

public static final AudioDriverType DirectSound
DirectSound (Windows hosts only).


WAS

public static final AudioDriverType WAS
Windows Audio Session (Windows hosts only).


CoreAudio

public static final AudioDriverType CoreAudio
CoreAudio (Mac hosts only).


MMPM

public static final AudioDriverType MMPM
Reserved for historical reasons.


SolAudio

public static final AudioDriverType SolAudio
Reserved for historical reasons.

Method Detail

values

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

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

valueOf

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

fromValue

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