65 lines
1.8 KiB
PHP
65 lines
1.8 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: analyticsStartup.proto
|
|
|
|
namespace Rv\Analytics\Startup\Audio;
|
|
|
|
use UnexpectedValueException;
|
|
|
|
/**
|
|
* Protobuf type <code>rv.analytics.Startup.Audio.AudioDevice</code>
|
|
*/
|
|
class AudioDevice
|
|
{
|
|
/**
|
|
* Generated from protobuf enum <code>AUDIO_DEVICE_UNKNOWN = 0;</code>
|
|
*/
|
|
const AUDIO_DEVICE_UNKNOWN = 0;
|
|
/**
|
|
* Generated from protobuf enum <code>AUDIO_DEVICE_MAIN = 1;</code>
|
|
*/
|
|
const AUDIO_DEVICE_MAIN = 1;
|
|
/**
|
|
* Generated from protobuf enum <code>AUDIO_DEVICE_SYSTEM = 2;</code>
|
|
*/
|
|
const AUDIO_DEVICE_SYSTEM = 2;
|
|
/**
|
|
* Generated from protobuf enum <code>AUDIO_DEVICE_OTHER = 3;</code>
|
|
*/
|
|
const AUDIO_DEVICE_OTHER = 3;
|
|
/**
|
|
* Generated from protobuf enum <code>AUDIO_DEVICE_NONE = 4;</code>
|
|
*/
|
|
const AUDIO_DEVICE_NONE = 4;
|
|
|
|
private static $valueToName = [
|
|
self::AUDIO_DEVICE_UNKNOWN => 'AUDIO_DEVICE_UNKNOWN',
|
|
self::AUDIO_DEVICE_MAIN => 'AUDIO_DEVICE_MAIN',
|
|
self::AUDIO_DEVICE_SYSTEM => 'AUDIO_DEVICE_SYSTEM',
|
|
self::AUDIO_DEVICE_OTHER => 'AUDIO_DEVICE_OTHER',
|
|
self::AUDIO_DEVICE_NONE => 'AUDIO_DEVICE_NONE',
|
|
];
|
|
|
|
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);
|
|
}
|
|
}
|
|
|