rv.analytics.Trigger.Action.Look.Setting
*/
class Setting
{
/**
* Generated from protobuf enum SETTING_NONE = 0;
*/
const SETTING_NONE = 0;
/**
* Generated from protobuf enum SETTING_SOME = 1;
*/
const SETTING_SOME = 1;
/**
* Generated from protobuf enum SETTING_ALL = 2;
*/
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);
}
}