Package com.brightcove.player.model
Enum Class DeliveryType
- All Implemented Interfaces:
Serializable
,Comparable<DeliveryType>
,Constable
Defines standard keys for each type of deliverable media asset handled by the SDK. These are
specifically used to indicate the type Source assets held within a SourceCollection. These values
correspond to the standard MIME types for each delivery mechanism.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDASHIndicates video content delivered via Flash Streaming.Indicates video content delivered via HTTP Live Streaming.Indicates H.264 encoded video in MP4 container delivered via HTTP or HTTPS.Indicates that no DeliveryType was specified.Widevine -
Method Summary
Modifier and TypeMethodDescriptionstatic DeliveryType
getDeliveryTypeByName
(String deliveryTypeByName) toString()
static DeliveryType
Returns the enum constant of this class with the specified name.static DeliveryType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
Indicates that no DeliveryType was specified. -
MP4
Indicates H.264 encoded video in MP4 container delivered via HTTP or HTTPS. -
HLS
Indicates video content delivered via HTTP Live Streaming. -
FLV
Indicates video content delivered via Flash Streaming. -
WVM
Widevine -
DASH
DASH
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<DeliveryType>
-
getDeliveryTypeByName
-