60 lines
1.7 KiB
PHP
60 lines
1.7 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: graphicsData.proto
|
|
|
|
namespace Rv\Data\Media;
|
|
|
|
use UnexpectedValueException;
|
|
|
|
/**
|
|
* Protobuf type <code>rv.data.Media.ScaleBehavior</code>
|
|
*/
|
|
class ScaleBehavior
|
|
{
|
|
/**
|
|
* Generated from protobuf enum <code>SCALE_BEHAVIOR_FIT = 0;</code>
|
|
*/
|
|
const SCALE_BEHAVIOR_FIT = 0;
|
|
/**
|
|
* Generated from protobuf enum <code>SCALE_BEHAVIOR_FILL = 1;</code>
|
|
*/
|
|
const SCALE_BEHAVIOR_FILL = 1;
|
|
/**
|
|
* Generated from protobuf enum <code>SCALE_BEHAVIOR_STRETCH = 2;</code>
|
|
*/
|
|
const SCALE_BEHAVIOR_STRETCH = 2;
|
|
/**
|
|
* Generated from protobuf enum <code>SCALE_BEHAVIOR_CUSTOM = 3;</code>
|
|
*/
|
|
const SCALE_BEHAVIOR_CUSTOM = 3;
|
|
|
|
private static $valueToName = [
|
|
self::SCALE_BEHAVIOR_FIT => 'SCALE_BEHAVIOR_FIT',
|
|
self::SCALE_BEHAVIOR_FILL => 'SCALE_BEHAVIOR_FILL',
|
|
self::SCALE_BEHAVIOR_STRETCH => 'SCALE_BEHAVIOR_STRETCH',
|
|
self::SCALE_BEHAVIOR_CUSTOM => 'SCALE_BEHAVIOR_CUSTOM',
|
|
];
|
|
|
|
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);
|
|
}
|
|
}
|
|
|