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