Branch data Line data Source code
1 : : /* 2 : : * ----------------- BEGIN LICENSE BLOCK --------------------------------- 3 : : * 4 : : * Copyright (C) 2018-2020 Intel Corporation 5 : : * 6 : : * SPDX-License-Identifier: LGPL-2.1-only 7 : : * 8 : : * ----------------- END LICENSE BLOCK ----------------------------------- 9 : : */ 10 : : 11 : : /** 12 : : * Generated file 13 : : * @file 14 : : * 15 : : * Generator Version : 11.0.0-1997 16 : : */ 17 : : 18 : : #include "ad/rss/world/ObjectType.hpp" 19 : : #include <stdexcept> 20 : : 21 : 4023440 : std::string toString(::ad::rss::world::ObjectType const e) 22 : : { 23 [ + + + + : 4023440 : switch (e) + + ] 24 : : { 25 : 3004100 : case ::ad::rss::world::ObjectType::Invalid: 26 : 3004100 : return std::string("::ad::rss::world::ObjectType::Invalid"); // LCOV_EXCL_BR_LINE 27 : 586 : case ::ad::rss::world::ObjectType::EgoVehicle: 28 : 586 : return std::string("::ad::rss::world::ObjectType::EgoVehicle"); // LCOV_EXCL_BR_LINE 29 : 18656 : case ::ad::rss::world::ObjectType::OtherVehicle: 30 : 18656 : return std::string("::ad::rss::world::ObjectType::OtherVehicle"); // LCOV_EXCL_BR_LINE 31 : 3 : case ::ad::rss::world::ObjectType::Pedestrian: 32 : 3 : return std::string("::ad::rss::world::ObjectType::Pedestrian"); // LCOV_EXCL_BR_LINE 33 : 3 : case ::ad::rss::world::ObjectType::ArtificialObject: 34 : 3 : return std::string("::ad::rss::world::ObjectType::ArtificialObject"); // LCOV_EXCL_BR_LINE 35 : 1000100 : default: 36 : 1000100 : return std::string("UNKNOWN ENUM VALUE"); // LCOV_EXCL_BR_LINE 37 : : } 38 : : } 39 : : 40 : 11 : template <>::ad::rss::world::ObjectType fromString(std::string const &str) 41 : : { 42 : 11 : if (str == std::string("::ad::rss::world::ObjectType::Invalid")) // LCOV_EXCL_BR_LINE 43 : : { 44 : 1 : return ::ad::rss::world::ObjectType::Invalid; 45 : : } 46 : 10 : if (str == std::string("Invalid")) // LCOV_EXCL_BR_LINE 47 : : { 48 : 1 : return ::ad::rss::world::ObjectType::Invalid; 49 : : } 50 : 9 : if (str == std::string("::ad::rss::world::ObjectType::EgoVehicle")) // LCOV_EXCL_BR_LINE 51 : : { 52 : 1 : return ::ad::rss::world::ObjectType::EgoVehicle; 53 : : } 54 : 8 : if (str == std::string("EgoVehicle")) // LCOV_EXCL_BR_LINE 55 : : { 56 : 1 : return ::ad::rss::world::ObjectType::EgoVehicle; 57 : : } 58 : 7 : if (str == std::string("::ad::rss::world::ObjectType::OtherVehicle")) // LCOV_EXCL_BR_LINE 59 : : { 60 : 1 : return ::ad::rss::world::ObjectType::OtherVehicle; 61 : : } 62 : 6 : if (str == std::string("OtherVehicle")) // LCOV_EXCL_BR_LINE 63 : : { 64 : 1 : return ::ad::rss::world::ObjectType::OtherVehicle; 65 : : } 66 : 5 : if (str == std::string("::ad::rss::world::ObjectType::Pedestrian")) // LCOV_EXCL_BR_LINE 67 : : { 68 : 1 : return ::ad::rss::world::ObjectType::Pedestrian; 69 : : } 70 : 4 : if (str == std::string("Pedestrian")) // LCOV_EXCL_BR_LINE 71 : : { 72 : 1 : return ::ad::rss::world::ObjectType::Pedestrian; 73 : : } 74 : 3 : if (str == std::string("::ad::rss::world::ObjectType::ArtificialObject")) // LCOV_EXCL_BR_LINE 75 : : { 76 : 1 : return ::ad::rss::world::ObjectType::ArtificialObject; 77 : : } 78 : 2 : if (str == std::string("ArtificialObject")) // LCOV_EXCL_BR_LINE 79 : : { 80 : 1 : return ::ad::rss::world::ObjectType::ArtificialObject; 81 : : } 82 : 1 : throw std::out_of_range("Invalid enum literal"); // LCOV_EXCL_BR_LINE 83 : : }