org.virtualbox_5_1
Enum AudioDriverType

java.lang.Object
  extended by java.lang.Enum<AudioDriverType>
      extended by org.virtualbox_5_1.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: {4BCC3D73-C2FE-40DB-B72F-0C2CA9D68496}


Enum Constant Summary
ALSA
          Advanced Linux Sound Architecture (Linux hosts only).
CoreAudio
          CoreAudio (Mac hosts only).
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
          Solaris audio (Solaris hosts only, not supported at the moment).
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

Null

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


WinMM

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


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).


DirectSound

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


CoreAudio

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


MMPM

public static final AudioDriverType MMPM
Reserved for historical reasons.


Pulse

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


SolAudio

public static final AudioDriverType SolAudio
Solaris audio (Solaris hosts only, not supported at the moment).

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)