rv.analytics.ui.PlaceholderLink.Source
*/
class Source
{
/**
* Generated from protobuf enum SOURCE_UNKNOWN = 0;
*/
const SOURCE_UNKNOWN = 0;
/**
* Generated from protobuf enum QUICK_SEARCH = 1;
*/
const QUICK_SEARCH = 1;
/**
* Generated from protobuf enum IMPORT_BUTTON = 2;
*/
const IMPORT_BUTTON = 2;
/**
* Generated from protobuf enum CREATE_BUTTON = 3;
*/
const CREATE_BUTTON = 3;
/**
* Generated from protobuf enum DRAG_DROP = 4;
*/
const DRAG_DROP = 4;
/**
* Generated from protobuf enum AUTOMATIC = 5;
*/
const AUTOMATIC = 5;
private static $valueToName = [
self::SOURCE_UNKNOWN => 'SOURCE_UNKNOWN',
self::QUICK_SEARCH => 'QUICK_SEARCH',
self::IMPORT_BUTTON => 'IMPORT_BUTTON',
self::CREATE_BUTTON => 'CREATE_BUTTON',
self::DRAG_DROP => 'DRAG_DROP',
self::AUTOMATIC => 'AUTOMATIC',
];
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);
}
}