common.Modulation */ class Modulation { /** * LoRa * * Generated from protobuf enum LORA = 0; */ const LORA = 0; /** * FSK * * Generated from protobuf enum FSK = 1; */ const FSK = 1; /** * LR-FHSS * * Generated from protobuf enum LR_FHSS = 2; */ const LR_FHSS = 2; private static $valueToName = [ self::LORA => 'LORA', self::FSK => 'FSK', self::LR_FHSS => 'LR_FHSS', ]; 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); } }