rv.data.API_v1_TimerState */ class API_v1_TimerState { /** * Generated from protobuf enum stopped = 0; */ const stopped = 0; /** * Generated from protobuf enum running = 1; */ const running = 1; /** * Generated from protobuf enum complete = 2; */ const complete = 2; /** * Generated from protobuf enum overrunning = 3; */ const overrunning = 3; /** * Generated from protobuf enum overran = 4; */ const overran = 4; private static $valueToName = [ self::stopped => 'stopped', self::running => 'running', self::complete => 'complete', self::overrunning => 'overrunning', self::overran => 'overran', ]; 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); } }