rv.analytics.UI.Capture.Shown.Source
*/
class Source
{
/**
* Generated from protobuf enum SOURCE_UNKNOWN = 0;
*/
const SOURCE_UNKNOWN = 0;
/**
* Generated from protobuf enum SOURCE_TOOLBAR = 1;
*/
const SOURCE_TOOLBAR = 1;
/**
* Generated from protobuf enum SOURCE_ACTION_POPOVER = 2;
*/
const SOURCE_ACTION_POPOVER = 2;
/**
* Generated from protobuf enum SOURCE_ACTION_CONTEXTUAL_MENU = 3;
*/
const SOURCE_ACTION_CONTEXTUAL_MENU = 3;
/**
* Generated from protobuf enum SOURCE_CALENDAR = 4;
*/
const SOURCE_CALENDAR = 4;
/**
* Generated from protobuf enum SOURCE_PREFERENCES_RESI = 5;
*/
const SOURCE_PREFERENCES_RESI = 5;
/**
* Generated from protobuf enum SOURCE_MAIN_MENU = 6;
*/
const SOURCE_MAIN_MENU = 6;
private static $valueToName = [
self::SOURCE_UNKNOWN => 'SOURCE_UNKNOWN',
self::SOURCE_TOOLBAR => 'SOURCE_TOOLBAR',
self::SOURCE_ACTION_POPOVER => 'SOURCE_ACTION_POPOVER',
self::SOURCE_ACTION_CONTEXTUAL_MENU => 'SOURCE_ACTION_CONTEXTUAL_MENU',
self::SOURCE_CALENDAR => 'SOURCE_CALENDAR',
self::SOURCE_PREFERENCES_RESI => 'SOURCE_PREFERENCES_RESI',
self::SOURCE_MAIN_MENU => 'SOURCE_MAIN_MENU',
];
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);
}
}