Enum Class DeliveryType

java.lang.Object
java.lang.Enum<DeliveryType>
com.brightcove.player.model.DeliveryType
All Implemented Interfaces:
Serializable, Comparable<DeliveryType>, Constable

public enum DeliveryType extends Enum<DeliveryType>
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.
  • Enum Constant Details

    • UNKNOWN

      public static final DeliveryType UNKNOWN
      Indicates that no DeliveryType was specified.
    • MP4

      public static final DeliveryType MP4
      Indicates H.264 encoded video in MP4 container delivered via HTTP or HTTPS.
    • HLS

      public static final DeliveryType HLS
      Indicates video content delivered via HTTP Live Streaming.
    • FLV

      public static final DeliveryType FLV
      Indicates video content delivered via Flash Streaming.
    • WVM

      public static final DeliveryType WVM
      Widevine
    • DASH

      public static final DeliveryType DASH
      DASH
  • Method Details

    • values

      public static DeliveryType[] 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 DeliveryType 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<DeliveryType>
    • getDeliveryTypeByName

      public static DeliveryType getDeliveryTypeByName(String deliveryTypeByName)