org.virtualbox_7_0
Enum RecordingCodecDeadline

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

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

Recording codec deadline. How (and if at all) this deadline is being implemented depends on the codec being used. Interface ID: {53627AE1-31CF-4303-9CD5-0C22FD2637CF}


Enum Constant Summary
Best
          Best quality, slowest.
Default
          Default deadline.
Good
          Balance between realtime and best deadline.
Realtime
          Realtime quality, often resulting in poor / basic quality.
 
Method Summary
static RecordingCodecDeadline fromValue(long v)
           
static RecordingCodecDeadline fromValue(java.lang.String v)
           
 int value()
           
static RecordingCodecDeadline valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RecordingCodecDeadline[] 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 RecordingCodecDeadline Default
Default deadline.


Realtime

public static final RecordingCodecDeadline Realtime
Realtime quality, often resulting in poor / basic quality.


Good

public static final RecordingCodecDeadline Good
Balance between realtime and best deadline.


Best

public static final RecordingCodecDeadline Best
Best quality, slowest.

Method Detail

values

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

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

valueOf

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

fromValue

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