Package com.kaltura.client.enums
Enum ContainerFormat
- java.lang.Object
-
- java.lang.Enum<ContainerFormat>
-
- com.kaltura.client.enums.ContainerFormat
-
- All Implemented Interfaces:
EnumAsString,Serializable,Comparable<ContainerFormat>
public enum ContainerFormat extends Enum<ContainerFormat> 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 ContainerFormatget(String value)StringgetValue()voidsetValue(String value)static ContainerFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static ContainerFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_3GP
public static final ContainerFormat _3GP
-
APPLEHTTP
public static final ContainerFormat APPLEHTTP
-
AVI
public static final ContainerFormat AVI
-
BIF
public static final ContainerFormat BIF
-
BMP
public static final ContainerFormat BMP
-
COPY
public static final ContainerFormat COPY
-
FLV
public static final ContainerFormat FLV
-
HLS
public static final ContainerFormat HLS
-
ISMA
public static final ContainerFormat ISMA
-
ISMV
public static final ContainerFormat ISMV
-
JPG
public static final ContainerFormat JPG
-
M2TS
public static final ContainerFormat M2TS
-
M4V
public static final ContainerFormat M4V
-
MKV
public static final ContainerFormat MKV
-
MOV
public static final ContainerFormat MOV
-
MP3
public static final ContainerFormat MP3
-
MP4
public static final ContainerFormat MP4
-
MPEG
public static final ContainerFormat MPEG
-
MPEGTS
public static final ContainerFormat MPEGTS
-
MXF
public static final ContainerFormat MXF
-
OGG
public static final ContainerFormat OGG
-
OGV
public static final ContainerFormat OGV
-
PDF
public static final ContainerFormat PDF
-
PNG
public static final ContainerFormat PNG
-
SWF
public static final ContainerFormat SWF
-
WAV
public static final ContainerFormat WAV
-
WEBM
public static final ContainerFormat WEBM
-
WMA
public static final ContainerFormat WMA
-
WMV
public static final ContainerFormat WMV
-
WVM
public static final ContainerFormat WVM
-
-
Method Detail
-
values
public static ContainerFormat[] 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 (ContainerFormat c : ContainerFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContainerFormat 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 ContainerFormat get(String value)
-
-