org.virtualbox_7_0
Enum AudioDirection

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

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

Audio direction enumeration. Interface ID: {F27D209B-040C-4AE9-BEAE-85F9693CA07A}


Enum Constant Summary
Duplex
          Duplex (Recording + Playback).
In
          Input (Recording).
Out
          Output (Playback).
Unknown
          Direction cannot be determined.
 
Method Summary
static AudioDirection fromValue(long v)
           
static AudioDirection fromValue(java.lang.String v)
           
 int value()
           
static AudioDirection valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AudioDirection[] 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 AudioDirection Unknown
Direction cannot be determined.


In

public static final AudioDirection In
Input (Recording).


Out

public static final AudioDirection Out
Output (Playback).


Duplex

public static final AudioDirection Duplex
Duplex (Recording + Playback).

Method Detail

values

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

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

valueOf

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

fromValue

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