org.virtualbox_7_0
Enum AudioDeviceType

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

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

Audio device type enumeration. Interface ID: {95457071-EF88-45A9-8416-FC05B08731D2}


Enum Constant Summary
BuiltLin
          Built-in device (cannot be removed).
ExternalOther
          External device, connected via some other method.
ExternalUSB
          External device, connected via USB.
Unknown
          Device type is unknown / cannot be determined
 
Method Summary
static AudioDeviceType fromValue(long v)
           
static AudioDeviceType fromValue(java.lang.String v)
           
 int value()
           
static AudioDeviceType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AudioDeviceType[] 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

Unknown

public static final AudioDeviceType Unknown
Device type is unknown / cannot be determined


BuiltLin

public static final AudioDeviceType BuiltLin
Built-in device (cannot be removed).


ExternalUSB

public static final AudioDeviceType ExternalUSB
External device, connected via USB.


ExternalOther

public static final AudioDeviceType ExternalOther
External device, connected via some other method.

Method Detail

values

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

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

valueOf

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

fromValue

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