Package com.kaltura.client.enums
Enum DeliveryProfileType
- java.lang.Object
-
- java.lang.Enum<DeliveryProfileType>
-
- com.kaltura.client.enums.DeliveryProfileType
-
- All Implemented Interfaces:
EnumAsString,Serializable,Comparable<DeliveryProfileType>
public enum DeliveryProfileType extends Enum<DeliveryProfileType> implements EnumAsString
This class was generated using generate.php against an XML schema provided by Kaltura. MANUAL CHANGES TO THIS CLASS WILL BE OVERWRITTEN.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeliveryProfileTypeget(String value)StringgetValue()voidsetValue(String value)static DeliveryProfileTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DeliveryProfileType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EDGE_CAST_HTTP
public static final DeliveryProfileType EDGE_CAST_HTTP
-
EDGE_CAST_RTMP
public static final DeliveryProfileType EDGE_CAST_RTMP
-
KONTIKI_HTTP
public static final DeliveryProfileType KONTIKI_HTTP
-
VELOCIX_HDS
public static final DeliveryProfileType VELOCIX_HDS
-
VELOCIX_HLS
public static final DeliveryProfileType VELOCIX_HLS
-
APPLE_HTTP
public static final DeliveryProfileType APPLE_HTTP
-
HDS
public static final DeliveryProfileType HDS
-
HTTP
public static final DeliveryProfileType HTTP
-
RTMP
public static final DeliveryProfileType RTMP
-
RTSP
public static final DeliveryProfileType RTSP
-
SILVER_LIGHT
public static final DeliveryProfileType SILVER_LIGHT
-
AKAMAI_HLS_DIRECT
public static final DeliveryProfileType AKAMAI_HLS_DIRECT
-
AKAMAI_HLS_MANIFEST
public static final DeliveryProfileType AKAMAI_HLS_MANIFEST
-
AKAMAI_HD
public static final DeliveryProfileType AKAMAI_HD
-
AKAMAI_HDS
public static final DeliveryProfileType AKAMAI_HDS
-
AKAMAI_HTTP
public static final DeliveryProfileType AKAMAI_HTTP
-
AKAMAI_RTMP
public static final DeliveryProfileType AKAMAI_RTMP
-
AKAMAI_RTSP
public static final DeliveryProfileType AKAMAI_RTSP
-
AKAMAI_SS
public static final DeliveryProfileType AKAMAI_SS
-
GENERIC_HLS
public static final DeliveryProfileType GENERIC_HLS
-
GENERIC_HDS
public static final DeliveryProfileType GENERIC_HDS
-
GENERIC_HTTP
public static final DeliveryProfileType GENERIC_HTTP
-
GENERIC_HLS_MANIFEST
public static final DeliveryProfileType GENERIC_HLS_MANIFEST
-
GENERIC_HDS_MANIFEST
public static final DeliveryProfileType GENERIC_HDS_MANIFEST
-
GENERIC_SS
public static final DeliveryProfileType GENERIC_SS
-
GENERIC_RTMP
public static final DeliveryProfileType GENERIC_RTMP
-
LEVEL3_HLS
public static final DeliveryProfileType LEVEL3_HLS
-
LEVEL3_HTTP
public static final DeliveryProfileType LEVEL3_HTTP
-
LEVEL3_RTMP
public static final DeliveryProfileType LEVEL3_RTMP
-
LIMELIGHT_HTTP
public static final DeliveryProfileType LIMELIGHT_HTTP
-
LIMELIGHT_RTMP
public static final DeliveryProfileType LIMELIGHT_RTMP
-
LOCAL_PATH_APPLE_HTTP
public static final DeliveryProfileType LOCAL_PATH_APPLE_HTTP
-
LOCAL_PATH_HDS
public static final DeliveryProfileType LOCAL_PATH_HDS
-
LOCAL_PATH_HTTP
public static final DeliveryProfileType LOCAL_PATH_HTTP
-
LOCAL_PATH_RTMP
public static final DeliveryProfileType LOCAL_PATH_RTMP
-
VOD_PACKAGER_HLS
public static final DeliveryProfileType VOD_PACKAGER_HLS
-
VOD_PACKAGER_HDS
public static final DeliveryProfileType VOD_PACKAGER_HDS
-
VOD_PACKAGER_MSS
public static final DeliveryProfileType VOD_PACKAGER_MSS
-
VOD_PACKAGER_DASH
public static final DeliveryProfileType VOD_PACKAGER_DASH
-
VOD_PACKAGER_HLS_MANIFEST
public static final DeliveryProfileType VOD_PACKAGER_HLS_MANIFEST
-
LIVE_HLS
public static final DeliveryProfileType LIVE_HLS
-
LIVE_HDS
public static final DeliveryProfileType LIVE_HDS
-
LIVE_DASH
public static final DeliveryProfileType LIVE_DASH
-
LIVE_RTMP
public static final DeliveryProfileType LIVE_RTMP
-
LIVE_HLS_TO_MULTICAST
public static final DeliveryProfileType LIVE_HLS_TO_MULTICAST
-
LIVE_PACKAGER_HLS
public static final DeliveryProfileType LIVE_PACKAGER_HLS
-
LIVE_PACKAGER_HDS
public static final DeliveryProfileType LIVE_PACKAGER_HDS
-
LIVE_PACKAGER_DASH
public static final DeliveryProfileType LIVE_PACKAGER_DASH
-
LIVE_PACKAGER_MSS
public static final DeliveryProfileType LIVE_PACKAGER_MSS
-
LIVE_AKAMAI_HDS
public static final DeliveryProfileType LIVE_AKAMAI_HDS
-
-
Method Detail
-
values
public static DeliveryProfileType[] 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 (DeliveryProfileType c : DeliveryProfileType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeliveryProfileType 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 DeliveryProfileType get(String value)
-
-