mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-04-25 21:40:06 +00:00
60 lines
1.5 KiB
PHP
Vendored
60 lines
1.5 KiB
PHP
Vendored
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# source: gw/gw.proto
|
|
|
|
namespace Chirpstack\Gateway;
|
|
|
|
use UnexpectedValueException;
|
|
|
|
/**
|
|
* Protobuf type <code>gw.DownlinkTiming</code>
|
|
*/
|
|
class DownlinkTiming
|
|
{
|
|
/**
|
|
* Send the downlink immediately.
|
|
*
|
|
* Generated from protobuf enum <code>IMMEDIATELY = 0;</code>
|
|
*/
|
|
const IMMEDIATELY = 0;
|
|
/**
|
|
* Send downlink at the given delay (based on provided context).
|
|
*
|
|
* Generated from protobuf enum <code>DELAY = 1;</code>
|
|
*/
|
|
const DELAY = 1;
|
|
/**
|
|
* Send at given GPS epoch value.
|
|
*
|
|
* Generated from protobuf enum <code>GPS_EPOCH = 2;</code>
|
|
*/
|
|
const GPS_EPOCH = 2;
|
|
|
|
private static $valueToName = [
|
|
self::IMMEDIATELY => 'IMMEDIATELY',
|
|
self::DELAY => 'DELAY',
|
|
self::GPS_EPOCH => 'GPS_EPOCH',
|
|
];
|
|
|
|
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);
|
|
}
|
|
}
|
|
|