bioformats
5.1.2
|
LaserMedium enumeration. More...
#include <ome/xml/model/enums/LaserMedium.h>
Public Types | |
enum | enum_value { CU, AG, ARFL, ARCL, KRFL, KRCL, XEFL, XECL, XEBR, N, AR, KR, XE, HENE, HECD, CO, CO2, H2O, HFL, NDGLASS, NDYAG, ERGLASS, ERYAG, HOYLF, HOYAG, RUBY, TISAPPHIRE, ALEXANDRITE, RHODAMINE6G, COUMARINC30, GAAS, GAALAS, EMINUS, OTHER } |
Enumeration values. More... | |
typedef std::map< std::string, LaserMedium::enum_value > | string_map_type |
String map type. | |
typedef std::map< LaserMedium::enum_value, std::string > | value_map_type |
Value map type. | |
Public Member Functions | |
LaserMedium (enum_value value) | |
Construct a LaserMedium enumeration by an enumeration value. More... | |
LaserMedium (const std::string &name, bool strict=true) | |
Construct a LaserMedium enumeration by an enumeration name. More... | |
LaserMedium (const LaserMedium &original) | |
Copy constructor. More... | |
LaserMedium & | operator= (const LaserMedium &rhs) |
Assignment operator. | |
operator enum_value () const | |
Cast the enumeration to its value. More... | |
operator const std::string & () const | |
Cast the enumeration to its name. More... | |
Static Public Member Functions | |
static const string_map_type & | strings () |
Get a map of valid string names and enum values. More... | |
static const value_map_type & | values () |
Get a map of valid enum values and string names. More... | |
Private Attributes | |
enum_value | value |
Enumeration value. | |
const std::string * | name |
Enumeration name. | |
Static Private Attributes | |
static const string_map_type | string_map |
Mapping of enumeration name to value. | |
static const string_map_type | lowercase_string_map |
Mapping of lowercase enumeration name to value. | |
static const value_map_type | value_map |
Mapping of enumeration value to name. | |
LaserMedium enumeration.
Enumeration values.
ome::xml::model::enums::LaserMedium::LaserMedium | ( | enum_value | value | ) |
Construct a LaserMedium enumeration by an enumeration value.
value | the value of the enumeration. |
References name, and value_map.
Referenced by LaserMedium().
ome::xml::model::enums::LaserMedium::LaserMedium | ( | const std::string & | name, |
bool | strict = true |
||
) |
Construct a LaserMedium enumeration by an enumeration name.
Exact matching of the name will require the name to match one of the valid enumeration names. Inexact matching will strip leading and trailing whitespace and perform a case-insensitive match. Exact matching is recommended for use in program code which does not process user input; inexact matching is recommended when processing potentially malformed user input.
name | the name of the enumeration. |
strict | true to require an exact name, false to allow an inexact match. |
References ome::common::createLogger(), LaserMedium(), lowercase_string_map, name, string_map, ome::common::trim(), value, and value_map.
ome::xml::model::enums::LaserMedium::LaserMedium | ( | const LaserMedium & | original | ) |
Copy constructor.
original | the instance to copy. |
|
inline |
|
inline |
|
static |
Get a map of valid string names and enum values.
References string_map.
|
static |
Get a map of valid enum values and string names.
References value_map.