BitmovinApiSdk\Models\DolbyDigitalPlusChannelLayout
Synopsis
class DolbyDigitalPlusChannelLayout
extends Enum
{
- // methods
- public static DolbyDigitalPlusChannelLayout create()
- public static DolbyDigitalPlusChannelLayout NONE()
- public static DolbyDigitalPlusChannelLayout MONO()
- public static DolbyDigitalPlusChannelLayout CL_STEREO()
- public static DolbyDigitalPlusChannelLayout CL_SURROUND()
- public static DolbyDigitalPlusChannelLayout CL_3_1()
- public static DolbyDigitalPlusChannelLayout CL_BACK_SURROUND()
- public static DolbyDigitalPlusChannelLayout CL_BACK_SURROUND_LFE()
- public static DolbyDigitalPlusChannelLayout CL_QUAD()
- public static DolbyDigitalPlusChannelLayout CL_QUAD_LFE()
- public static DolbyDigitalPlusChannelLayout CL_4_0()
- public static DolbyDigitalPlusChannelLayout CL_4_1()
- public static DolbyDigitalPlusChannelLayout CL_5_0()
- public static DolbyDigitalPlusChannelLayout CL_5_1()
- // 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 DolbyDigitalPlusChannelLayout __callStatic()
- public mixed jsonSerialize()
Hierarchy
Extends
Methods
public
- CL_3_1() — Channel layout 3.1 (3 front (left + center + right), LFE)
- CL_4_0() — Channel layout 4.0 (3 front (left + center + right), 1 back center, no LFE)
- CL_4_1() — Channel layout 4.1 (3 front (left + center + right), 1 back center, LFE)
- CL_5_0() — Channel layout 5.0 (3 front (left + center + right), 2 side (left + right), no LFE)
- CL_5_1() — Channel layout 5.1 (3 front (left + center + right), 2 side (left + right), LFE)
- CL_BACK_SURROUND() — Channel layout Surround (2 front (left + right), 1 back center, no LFE)
- CL_BACK_SURROUND_LFE() — Channel layout Surround with LFE (2 front (left + right), 1 back center, LFE)
- CL_QUAD() — Channel layout Quad (2 front (left + right), 2 back (left + right), no LFE)
- CL_QUAD_LFE() — Channel layout Quad with LFE (2 front (left + right), 2 back (left + right), LFE)
- CL_STEREO() — Channel layout Stereo
- CL_SURROUND() — Channel layout 3.0 (3 front (left + center + right), no LFE)
- MONO() — Channel layout Mono
- NONE() — No channel layout
- 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