ad_rss
Namespaces | Macros | Enumerations | Functions
LaneDrivingDirection.hpp File Reference
#include <iostream>
#include <memory>
#include <string>
Include dependency graph for LaneDrivingDirection.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 ad
 namespace ad
 
 ad::rss
 namespace rss
 
 ad::rss::world
 namespace world
 

Macros

#define GEN_GUARD_AD_RSS_WORLD_LANEDRIVINGDIRECTION
 protect the definition of functions from duplicates by typedef usage within other data types
 

Enumerations

enum  ad::rss::world::LaneDrivingDirection : int32_t { ad::rss::world::LaneDrivingDirection::Bidirectional = 0, ad::rss::world::LaneDrivingDirection::Positive = 1, ad::rss::world::LaneDrivingDirection::Negative = 2 }
 DataType LaneDrivingDirection. More...
 

Functions

std::string toString (::ad::rss::world::LaneDrivingDirection const e)
 Conversion of ad::rss::world::LaneDrivingDirection to std::string helper.
 
template<typename EnumType >
EnumType fromString (std::string const &str)
 Conversion from std::string to enum type T helper. More...
 
template<>
::ad::rss::world::LaneDrivingDirection fromString (std::string const &str)
 Conversion from std::string to enum type T helper. More...
 
std::ostream & ad::rss::world::operator<< (std::ostream &os, LaneDrivingDirection const &value)
 standard ostream operator More...
 
std::string std::to_string (::ad::rss::world::LaneDrivingDirection const &value)
 overload of the std::to_string for LaneDrivingDirection
 

Detailed Description

Generated file

Generator Version : 11.0.0-1997

Function Documentation

◆ fromString() [1/2]

template<typename EnumType >
EnumType fromString ( std::string const &  str)

Conversion from std::string to enum type T helper.

Parameters
[in]str- a fully qualified string name of enum class type
Returns
T enum value
Exceptions
std::out_of_rangeexception if the given string does not match any enum type

Example usage:

auto value = fromString<SomeEnumType>("SomeEnumType::eValue");
assert(value == SomeEnumType::eValue);
// Or:
auto value = fromString<SomeEnumType>("eValue");
assert(value == SomeEnumType::eValue);

◆ fromString() [2/2]

template<>
::ad::rss::world::LaneDrivingDirection fromString ( std::string const &  str)

Conversion from std::string to enum type T helper.

Parameters
[in]str- a fully qualified string name of enum class type
Returns
T enum value
Exceptions
std::out_of_rangeexception if the given string does not match any enum type

Example usage:

auto value = fromString<SomeEnumType>("SomeEnumType::eValue");
assert(value == SomeEnumType::eValue);
// Or:
auto value = fromString<SomeEnumType>("eValue");
assert(value == SomeEnumType::eValue);