rv.analytics.trigger.media.Transport.DurationRange
*/
class DurationRange
{
/**
* Generated from protobuf enum UNDER_10S = 0;
*/
const UNDER_10S = 0;
/**
* Generated from protobuf enum _10S_TO_30S = 1;
*/
const _10S_TO_30S = 1;
/**
* Generated from protobuf enum _30S_TO_60S = 2;
*/
const _30S_TO_60S = 2;
/**
* Generated from protobuf enum _1M_TO_5M = 3;
*/
const _1M_TO_5M = 3;
/**
* Generated from protobuf enum _5M_TO_10M = 4;
*/
const _5M_TO_10M = 4;
/**
* Generated from protobuf enum _10M_TO_30M = 5;
*/
const _10M_TO_30M = 5;
/**
* Generated from protobuf enum _30M_TO_60M = 6;
*/
const _30M_TO_60M = 6;
/**
* Generated from protobuf enum _1H_TO_2H = 7;
*/
const _1H_TO_2H = 7;
/**
* Generated from protobuf enum OVER_2H = 8;
*/
const OVER_2H = 8;
private static $valueToName = [
self::UNDER_10S => 'UNDER_10S',
self::_10S_TO_30S => '_10S_TO_30S',
self::_30S_TO_60S => '_30S_TO_60S',
self::_1M_TO_5M => '_1M_TO_5M',
self::_5M_TO_10M => '_5M_TO_10M',
self::_10M_TO_30M => '_10M_TO_30M',
self::_30M_TO_60M => '_30M_TO_60M',
self::_1H_TO_2H => '_1H_TO_2H',
self::OVER_2H => 'OVER_2H',
];
public static function name($value)
{
if (!isset(self::$valueToName[$value])) {
throw new UnexpectedValueException(sprintf(
'Enum %s has no name defined for value %s', __CLASS__, $value));
}
return self::$valueToName[$value];
}
public static function value($name)
{
$const = __CLASS__ . '::' . strtoupper($name);
if (!defined($const)) {
throw new UnexpectedValueException(sprintf(
'Enum %s has no value defined for name %s', __CLASS__, $name));
}
return constant($const);
}
}