ad_rss
Namespaces | Macros | Enumerations | Functions
LateralRelativePosition.hpp File Reference
#include <iostream>
#include <memory>
#include <string>
Include dependency graph for LateralRelativePosition.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::situation
 namespace situation
 

Macros

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

Enumerations

enum  ad::rss::situation::LateralRelativePosition : int32_t {
  ad::rss::situation::LateralRelativePosition::AtLeft = 0, ad::rss::situation::LateralRelativePosition::OverlapLeft = 1, ad::rss::situation::LateralRelativePosition::Overlap = 2, ad::rss::situation::LateralRelativePosition::OverlapRight = 3,
  ad::rss::situation::LateralRelativePosition::AtRight = 4
}
 DataType LateralRelativePosition. More...
 

Functions

std::string toString (::ad::rss::situation::LateralRelativePosition const e)
 Conversion of ad::rss::situation::LateralRelativePosition 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::situation::LateralRelativePosition fromString (std::string const &str)
 Conversion from std::string to enum type T helper. More...
 
std::ostream & ad::rss::situation::operator<< (std::ostream &os, LateralRelativePosition const &value)
 standard ostream operator More...
 
std::string std::to_string (::ad::rss::situation::LateralRelativePosition const &value)
 overload of the std::to_string for LateralRelativePosition
 

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::situation::LateralRelativePosition 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);