BitmovinApiSdk\Models\HlsManifestAdMarkerType
Synopsis
class HlsManifestAdMarkerType
extends Enum
{
- // methods
- public static HlsManifestAdMarkerType create()
- public static HlsManifestAdMarkerType EXT_X_CUE_OUT_IN()
- public static HlsManifestAdMarkerType EXT_OATCLS_SCTE35()
- public static HlsManifestAdMarkerType EXT_X_SPLICEPOINT_SCTE35()
- public static HlsManifestAdMarkerType EXT_X_DATERANGE()
- public static HlsManifestAdMarkerType EXT_X_SCTE35()
- // Inherited methods from Enum
- public void __construct()
- public mixed getValue()
- public mixed getKey()
- public string __toString()
- public final bool equals()
- public static array keys()
- public static array values()
- public static array toArray()
- public static bool isValidKey()
- public static mixed search()
- public static HlsManifestAdMarkerType __callStatic()
- public mixed jsonSerialize()
Hierarchy
Extends
Methods
public
- EXT_OATCLS_SCTE35() — Ad markers will be inserted using `#EXT-OATCLS-SCTE35` tags. They contain the base64 encoded raw bytes of the original SCTE-35 trigger.
- EXT_X_CUE_OUT_IN() — Ad markers will be inserted using `#EXT-X-CUE-OUT` and `#EXT-X-CUE-IN` tags
- EXT_X_DATERANGE() — Ad markers will be inserted using `#EXT-X-DATERANGE` tags. They contain the ID, start timestamp and hex encoded raw bytes of the original SCTE-35 trigger.
- EXT_X_SCTE35() — Ad markers will be inserted using `#EXT-X-SCTE35` tags. They contain the base64 encoded raw bytes of the original SCTE-35 trigger.
- EXT_X_SPLICEPOINT_SCTE35() — Ad markers will be inserted using `#EXT-X-SPLICEPOINT-SCTE35` tags. They contain the base64 encoded raw bytes of the original SCTE-35 trigger.
- create()
Inherited from BitmovinApiSdk\Common\Enum
public
- __callStatic() — Returns a value when called statically like so: MyEnum::SOME_VALUE() given SOME_VALUE is a class constant
- __toString()
- equals() — Determines if Enum should be considered equal with the variable passed as a parameter.
- getKey() — Returns the enum key (i.e. the constant name).
- getValue()
- isValidKey() — Check if is valid enum key
- jsonSerialize() — Specify data which should be serialized to JSON. This method returns data that can be serialized by json_encode() natively.
- keys() — Returns the names (keys) of all constants in the Enum class
- search() — Return key for value
- toArray() — Returns all possible values as an array
- values() — Returns instances of the Enum class of all Enum constants