public enum RecordingCodecDeadline extends java.lang.Enum<RecordingCodecDeadline>
{53627AE1-31CF-4303-9CD5-0C22FD2637CF}
Enum Constant and Description |
---|
Best
Best quality, slowest.
|
Default
Default deadline.
|
Good
Balance between realtime and best deadline.
|
Realtime
Realtime quality, often resulting in poor / basic quality.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final RecordingCodecDeadline Default
public static final RecordingCodecDeadline Realtime
public static final RecordingCodecDeadline Good
public static final RecordingCodecDeadline Best
public static RecordingCodecDeadline[] values()
for (RecordingCodecDeadline c : RecordingCodecDeadline.values()) System.out.println(c);
public static RecordingCodecDeadline valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public static RecordingCodecDeadline fromValue(long v)
public static RecordingCodecDeadline fromValue(java.lang.String v)