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