55 lines
1.5 KiB
PHP
55 lines
1.5 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: analyticsStartup.proto
|
|
|
|
namespace Rv\Analytics\Startup\ScreenConfiguration\Screen;
|
|
|
|
use UnexpectedValueException;
|
|
|
|
/**
|
|
* Protobuf type <code>rv.analytics.Startup.ScreenConfiguration.Screen.AlphaDevice</code>
|
|
*/
|
|
class AlphaDevice
|
|
{
|
|
/**
|
|
* Generated from protobuf enum <code>ALPHA_DEVICE_NONE = 0;</code>
|
|
*/
|
|
const ALPHA_DEVICE_NONE = 0;
|
|
/**
|
|
* Generated from protobuf enum <code>ALPHA_DEVICE_SELF = 1;</code>
|
|
*/
|
|
const ALPHA_DEVICE_SELF = 1;
|
|
/**
|
|
* Generated from protobuf enum <code>ALPHA_DEVICE_OTHER = 2;</code>
|
|
*/
|
|
const ALPHA_DEVICE_OTHER = 2;
|
|
|
|
private static $valueToName = [
|
|
self::ALPHA_DEVICE_NONE => 'ALPHA_DEVICE_NONE',
|
|
self::ALPHA_DEVICE_SELF => 'ALPHA_DEVICE_SELF',
|
|
self::ALPHA_DEVICE_OTHER => 'ALPHA_DEVICE_OTHER',
|
|
];
|
|
|
|
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);
|
|
}
|
|
}
|
|
|