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