public static enum LiveTranscoding.VideoCodecType extends java.lang.Enum<LiveTranscoding.VideoCodecType>
Enum Constant and Description |
---|
H264
`1`: (Default) H.264
|
H265
`2`: H.265
|
Modifier and Type | Method and Description |
---|---|
static int |
getValue(LiveTranscoding.VideoCodecType type) |
static LiveTranscoding.VideoCodecType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LiveTranscoding.VideoCodecType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LiveTranscoding.VideoCodecType H264
public static final LiveTranscoding.VideoCodecType H265
public static LiveTranscoding.VideoCodecType[] values()
for (LiveTranscoding.VideoCodecType c : LiveTranscoding.VideoCodecType.values()) System.out.println(c);
public static LiveTranscoding.VideoCodecType 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 static int getValue(LiveTranscoding.VideoCodecType type)