BitmovinApiSdk\Models\ConditionOperator
Synopsis
class ConditionOperator
extends Enum
{
- // methods
- public static ConditionOperator create()
- public static ConditionOperator EQUAL()
- public static ConditionOperator NOT_EQUAL()
- public static ConditionOperator LESS_THAN_OR_EQUAL()
- public static ConditionOperator LESS_THAN()
- public static ConditionOperator GREATER_THAN()
- public static ConditionOperator GREATER_THAN_OR_EQUAL()
- // 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 ConditionOperator __callStatic()
- public mixed jsonSerialize()
Hierarchy
Extends
Methods
public
- EQUAL() — Equal
- GREATER_THAN() — Greater than
- GREATER_THAN_OR_EQUAL() — Greater than or equal
- LESS_THAN() — Less then
- LESS_THAN_OR_EQUAL() — Less than or equal
- NOT_EQUAL() — Not equal
- 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