public enum RecordingRateControlMode extends java.lang.Enum<RecordingRateControlMode>
{D07A33AC-B4EA-4917-942D-C03BE14FBE2F}
Enum Constant and Description |
---|
ABR
Average bit rate (ABR).
|
CBR
Constant bit rate (CBR).
|
VBR
Variable bit rate (VBR).
|
Modifier and Type | Method and Description |
---|---|
static RecordingRateControlMode |
fromValue(long v) |
static RecordingRateControlMode |
fromValue(java.lang.String v) |
int |
value() |
static RecordingRateControlMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecordingRateControlMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordingRateControlMode ABR
public static final RecordingRateControlMode CBR
public static final RecordingRateControlMode VBR
public static RecordingRateControlMode[] values()
for (RecordingRateControlMode c : RecordingRateControlMode.values()) System.out.println(c);
public static RecordingRateControlMode 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 RecordingRateControlMode fromValue(long v)
public static RecordingRateControlMode fromValue(java.lang.String v)