public enum DeliveryType extends java.lang.Enum<DeliveryType>
Enum Constant and Description |
---|
DASH
DASH
|
FLV
Indicates video content delivered via Flash Streaming.
|
HLS
Indicates video content delivered via HTTP Live Streaming.
|
MP4
Indicates H.264 encoded video in MP4 container delivered via HTTP or HTTPS.
|
UNKNOWN
Indicates that no DeliveryType was specified.
|
WVM
Widevine
|
Modifier and Type | Method and Description |
---|---|
static DeliveryType |
getDeliveryTypeByName(java.lang.String deliveryTypeByName) |
java.lang.String |
toString() |
static DeliveryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeliveryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliveryType UNKNOWN
public static final DeliveryType MP4
public static final DeliveryType HLS
public static final DeliveryType FLV
public static final DeliveryType WVM
public static final DeliveryType DASH
public static DeliveryType[] values()
for (DeliveryType c : DeliveryType.values()) System.out.println(c);
public static DeliveryType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<DeliveryType>
public static DeliveryType getDeliveryTypeByName(java.lang.String deliveryTypeByName)