org.virtualbox_6_1
Enum RecordingFeature

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

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

Recording features enumeration. Interface ID: {A7DDC6A5-DAA8-4485-B860-E9F2E98A7794}


Enum Constant Summary
Audio
          Audio recording.
None
          No feature set.
Video
          Video recording.
 
Method Summary
static RecordingFeature fromValue(long v)
           
static RecordingFeature fromValue(java.lang.String v)
           
 int value()
           
static RecordingFeature valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RecordingFeature[] 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

None

public static final RecordingFeature None
No feature set.


Video

public static final RecordingFeature Video
Video recording.


Audio

public static final RecordingFeature Audio
Audio recording.

Method Detail

values

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

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

valueOf

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

fromValue

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