propresenter-php/php/generated/Rv/Data/Slide/Element/Build/Start.php
2026-03-01 16:12:17 +01:00

60 lines
1.6 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: slide.proto
namespace Rv\Data\Slide\Element\Build;
use UnexpectedValueException;
/**
* Protobuf type <code>rv.data.Slide.Element.Build.Start</code>
*/
class Start
{
/**
* Generated from protobuf enum <code>START_ON_CLICK = 0;</code>
*/
const START_ON_CLICK = 0;
/**
* Generated from protobuf enum <code>START_WITH_PREVIOUS = 1;</code>
*/
const START_WITH_PREVIOUS = 1;
/**
* Generated from protobuf enum <code>START_AFTER_PREVIOUS = 2;</code>
*/
const START_AFTER_PREVIOUS = 2;
/**
* Generated from protobuf enum <code>START_WITH_SLIDE = 3;</code>
*/
const START_WITH_SLIDE = 3;
private static $valueToName = [
self::START_ON_CLICK => 'START_ON_CLICK',
self::START_WITH_PREVIOUS => 'START_WITH_PREVIOUS',
self::START_AFTER_PREVIOUS => 'START_AFTER_PREVIOUS',
self::START_WITH_SLIDE => 'START_WITH_SLIDE',
];
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);
}
}