Package com.kaltura.client.enums
Enum VideoCodec
- java.lang.Object
-
- java.lang.Enum<VideoCodec>
-
- com.kaltura.client.enums.VideoCodec
-
- All Implemented Interfaces:
EnumAsString,Serializable,Comparable<VideoCodec>
public enum VideoCodec extends Enum<VideoCodec> implements EnumAsString
This class was generated using generate.php against an XML schema provided by Kaltura. MANUAL CHANGES TO THIS CLASS WILL BE OVERWRITTEN.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VideoCodecget(String value)StringgetValue()voidsetValue(String value)static VideoCodecvalueOf(String name)Returns the enum constant of this type with the specified name.static VideoCodec[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final VideoCodec NONE
-
APCH
public static final VideoCodec APCH
-
APCN
public static final VideoCodec APCN
-
APCO
public static final VideoCodec APCO
-
APCS
public static final VideoCodec APCS
-
AV1
public static final VideoCodec AV1
-
COPY
public static final VideoCodec COPY
-
DNXHD
public static final VideoCodec DNXHD
-
DV
public static final VideoCodec DV
-
FLV
public static final VideoCodec FLV
-
H263
public static final VideoCodec H263
-
H264
public static final VideoCodec H264
-
H264B
public static final VideoCodec H264B
-
H264H
public static final VideoCodec H264H
-
H264M
public static final VideoCodec H264M
-
H265
public static final VideoCodec H265
-
MPEG2
public static final VideoCodec MPEG2
-
MPEG4
public static final VideoCodec MPEG4
-
THEORA
public static final VideoCodec THEORA
-
VP6
public static final VideoCodec VP6
-
VP8
public static final VideoCodec VP8
-
VP9
public static final VideoCodec VP9
-
WMV2
public static final VideoCodec WMV2
-
WMV3
public static final VideoCodec WMV3
-
WVC1A
public static final VideoCodec WVC1A
-
-
Method Detail
-
values
public static VideoCodec[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VideoCodec c : VideoCodec.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VideoCodec valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
- Specified by:
getValuein interfaceEnumAsString
-
setValue
public void setValue(String value)
-
get
public static VideoCodec get(String value)
-
-