BitmovinApiSdk\Models\InputType
Synopsis
class InputType
extends Enum
{
- // methods
- public static InputType create()
- public static InputType AKAMAI_NETSTORAGE()
- public static InputType ASPERA()
- public static InputType AZURE()
- public static InputType REDUNDANT_RTMP()
- public static InputType FTP()
- public static InputType GENERIC_S3()
- public static InputType GCS()
- public static InputType HTTP()
- public static InputType HTTPS()
- public static InputType LOCAL()
- public static InputType RTMP()
- public static InputType S3()
- public static InputType S3_ROLE_BASED()
- public static InputType SFTP()
- public static InputType ZIXI()
- public static InputType SRT()
- public static InputType GCS_SERVICE_ACCOUNT()
- public static InputType DIRECT_FILE_UPLOAD()
- // 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 InputType __callStatic()
- public mixed jsonSerialize()
Hierarchy
Extends
Methods
public
- AKAMAI_NETSTORAGE() — AKAMAI_NETSTORAGE
- ASPERA() — ASPERA
- AZURE() — AZURE
- DIRECT_FILE_UPLOAD() — DIRECT_FILE_UPLOAD
- FTP() — FTP
- GCS() — GCS
- GCS_SERVICE_ACCOUNT() — GCS_SERVICE_ACCOUNT
- GENERIC_S3() — GENERIC_S3
- HTTP() — HTTP
- HTTPS() — HTTPS
- LOCAL() — LOCAL
- REDUNDANT_RTMP() — REDUNDANT_RTMP
- RTMP() — RTMP
- S3() — S3
- S3_ROLE_BASED() — S3_ROLE_BASED
- SFTP() — SFTP
- SRT() — SRT
- ZIXI() — ZIXI
- 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