rv.analytics.trigger.media.VisualMedia.NativeRotation
*/
class NativeRotation
{
/**
* Generated from protobuf enum STANDARD = 0;
*/
const STANDARD = 0;
/**
* Generated from protobuf enum _90 = 90;
*/
const _90 = 90;
/**
* Generated from protobuf enum _180 = 180;
*/
const _180 = 180;
/**
* Generated from protobuf enum _270 = 270;
*/
const _270 = 270;
private static $valueToName = [
self::STANDARD => 'STANDARD',
self::_90 => '_90',
self::_180 => '_180',
self::_270 => '_270',
];
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);
}
}