55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: analyticsTrigger.proto
|
|
|
|
namespace Rv\Analytics\Trigger\Action\Look;
|
|
|
|
use UnexpectedValueException;
|
|
|
|
/**
|
|
* Protobuf type <code>rv.analytics.Trigger.Action.Look.Setting</code>
|
|
*/
|
|
class Setting
|
|
{
|
|
/**
|
|
* Generated from protobuf enum <code>SETTING_NONE = 0;</code>
|
|
*/
|
|
const SETTING_NONE = 0;
|
|
/**
|
|
* Generated from protobuf enum <code>SETTING_SOME = 1;</code>
|
|
*/
|
|
const SETTING_SOME = 1;
|
|
/**
|
|
* Generated from protobuf enum <code>SETTING_ALL = 2;</code>
|
|
*/
|
|
const SETTING_ALL = 2;
|
|
|
|
private static $valueToName = [
|
|
self::SETTING_NONE => 'SETTING_NONE',
|
|
self::SETTING_SOME => 'SETTING_SOME',
|
|
self::SETTING_ALL => 'SETTING_ALL',
|
|
];
|
|
|
|
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);
|
|
}
|
|
}
|
|
|