propresenter-php/php/generated/Rv/Analytics/UI/LowerRight/Timers/State/State.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: analyticsUI.proto
namespace Rv\Analytics\UI\LowerRight\Timers\State;
use UnexpectedValueException;
/**
* Protobuf type <code>rv.analytics.UI.LowerRight.Timers.State.State</code>
*/
class State
{
/**
* Generated from protobuf enum <code>STATE_UNKNOWN = 0;</code>
*/
const STATE_UNKNOWN = 0;
/**
* Generated from protobuf enum <code>STATE_START = 1;</code>
*/
const STATE_START = 1;
/**
* Generated from protobuf enum <code>STATE_STOP = 2;</code>
*/
const STATE_STOP = 2;
/**
* Generated from protobuf enum <code>STATE_RESET = 3;</code>
*/
const STATE_RESET = 3;
private static $valueToName = [
self::STATE_UNKNOWN => 'STATE_UNKNOWN',
self::STATE_START => 'STATE_START',
self::STATE_STOP => 'STATE_STOP',
self::STATE_RESET => 'STATE_RESET',
];
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);
}
}