propresenter-php/php/generated/Rv/Data/Graphics/Text/Attributes/Underline/Pattern.php
2026-03-01 16:12:17 +01:00

65 lines
1.8 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\Attributes\Underline;
use UnexpectedValueException;
/**
* Protobuf type <code>rv.data.Graphics.Text.Attributes.Underline.Pattern</code>
*/
class Pattern
{
/**
* Generated from protobuf enum <code>PATTERN_SOLID = 0;</code>
*/
const PATTERN_SOLID = 0;
/**
* Generated from protobuf enum <code>PATTERN_DOT = 1;</code>
*/
const PATTERN_DOT = 1;
/**
* Generated from protobuf enum <code>PATTERN_DASH = 2;</code>
*/
const PATTERN_DASH = 2;
/**
* Generated from protobuf enum <code>PATTERN_DASH_DOT = 3;</code>
*/
const PATTERN_DASH_DOT = 3;
/**
* Generated from protobuf enum <code>PATTERN_DASH_DOT_DOT = 4;</code>
*/
const PATTERN_DASH_DOT_DOT = 4;
private static $valueToName = [
self::PATTERN_SOLID => 'PATTERN_SOLID',
self::PATTERN_DOT => 'PATTERN_DOT',
self::PATTERN_DASH => 'PATTERN_DASH',
self::PATTERN_DASH_DOT => 'PATTERN_DASH_DOT',
self::PATTERN_DASH_DOT_DOT => 'PATTERN_DASH_DOT_DOT',
];
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);
}
}