rv.analytics.startup.Output.AlphaDevice
*/
class AlphaDevice
{
/**
* Generated from protobuf enum ALPHA_DEVICE_NONE = 0;
*/
const ALPHA_DEVICE_NONE = 0;
/**
* Generated from protobuf enum SELF = 1;
*/
const SELF = 1;
/**
* Generated from protobuf enum OTHER = 2;
*/
const OTHER = 2;
private static $valueToName = [
self::ALPHA_DEVICE_NONE => 'ALPHA_DEVICE_NONE',
self::SELF => 'SELF',
self::OTHER => '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);
}
}