java.lang.Enum<MediaUtils.VideoCodecType>
com.opentok.android.MediaUtils.VideoCodecType
All Implemented Interfaces:
: Serializable, Comparable<MediaUtils.VideoCodecType>, Constable
Enclosing class:
: MediaUtils
public static enum MediaUtils.VideoCodecType extends Enum<MediaUtils.VideoCodecType>
An enum of video codec types.
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Enum Constant Summary
Enum Constants
Enum Constant
Description
VIDEO_CODEC_H264
H.264.
VIDEO_CODEC_VP8
VP8.
VIDEO_CODEC_VP9
VP9.
Method Summary
All MethodsStatic MethodsInstance MethodsConcrete Methods
Modifier and Type
Method
Description
int
getValue()
static MediaUtils.VideoCodecType
getValue(int value)
static MediaUtils.VideoCodecType
valueOf(String name)
Returns the enum constant of this class with the specified name.
static MediaUtils.VideoCodecType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
Enum Constant Details
VIDEO_CODEC_VP8
public static final MediaUtils.VideoCodecType VIDEO_CODEC_VP8
VP8.
VIDEO_CODEC_H264
public static final MediaUtils.VideoCodecType VIDEO_CODEC_H264
H.264.
VIDEO_CODEC_VP9
public static final MediaUtils.VideoCodecType VIDEO_CODEC_VP9
VP9.
Method Details
values
public static MediaUtils.VideoCodecType[] values()
Returns an array containing the constants of this enum class, in the order they are declared.
Returns: : an array containing the constants of this enum class, in the order they are declared
valueOf
public static MediaUtils.VideoCodecType valueOf(String name)
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
Parameters:
: name - the name of the enum constant to be returned.
Returns: : the enum constant with the specified name
Throws:
: IllegalArgumentException - if this enum class has no constant with the specified name
: NullPointerException - if the argument is null
getValue
public int getValue()
getValue
public static MediaUtils.VideoCodecType getValue(int value)