ad_rss
Namespaces | Macros | Enumerations | Functions
SituationType.hpp File Reference
#include <iostream>
#include <memory>
#include <string>
Include dependency graph for SituationType.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_SITUATIONTYPE
 protect the definition of functions from duplicates by typedef usage within other data types
 

Enumerations

enum  ad::rss::situation::SituationType : int32_t {
  ad::rss::situation::SituationType::NotRelevant = 0, ad::rss::situation::SituationType::SameDirection = 1, ad::rss::situation::SituationType::OppositeDirection = 2, ad::rss::situation::SituationType::IntersectionEgoHasPriority = 3,
  ad::rss::situation::SituationType::IntersectionObjectHasPriority = 4, ad::rss::situation::SituationType::IntersectionSamePriority = 5, ad::rss::situation::SituationType::Unstructured = 6
}
 DataType SituationType. More...
 

Functions

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

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::SituationType 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);