bioformats
5.1.6
|
ContrastMethod enumeration. More...
#include <ome/xml/model/enums/ContrastMethod.h>
Public Types | |
enum | enum_value { BRIGHTFIELD, PHASE, DIC, HOFFMANMODULATION, OBLIQUEILLUMINATION, POLARIZEDLIGHT, DARKFIELD, FLUORESCENCE, OTHER } |
Enumeration values. More... | |
typedef std::map< std::string, ContrastMethod::enum_value > | string_map_type |
String map type. | |
typedef std::map< ContrastMethod::enum_value, std::string > | value_map_type |
Value map type. | |
Public Member Functions | |
ContrastMethod (enum_value value) | |
Construct a ContrastMethod enumeration by an enumeration value. More... | |
ContrastMethod (const std::string &name, bool strict=true) | |
Construct a ContrastMethod enumeration by an enumeration name. More... | |
ContrastMethod (const ContrastMethod &original) | |
Copy constructor. More... | |
ContrastMethod & | operator= (const ContrastMethod &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... | |
Static Private Member Functions | |
static const string_map_type & | lowercase_strings () |
Get a map of valid lowercased string names and enum values. More... | |
Private Attributes | |
enum_value | value |
Enumeration value. | |
const std::string * | name |
Enumeration name. | |
ContrastMethod enumeration.
ome::xml::model::enums::ContrastMethod::ContrastMethod | ( | enum_value | value | ) |
Construct a ContrastMethod enumeration by an enumeration value.
value | the value of the enumeration. |
ome::xml::model::enums::ContrastMethod::ContrastMethod | ( | const std::string & | name, |
bool | strict = true |
||
) |
Construct a ContrastMethod 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 ContrastMethod(), ome::common::createLogger(), lowercase_strings(), name, strings(), ome::common::trim(), value, and values().
Referenced by ContrastMethod().
ome::xml::model::enums::ContrastMethod::ContrastMethod | ( | const ContrastMethod & | original | ) |
Copy constructor.
original | the instance to copy. |
|
staticprivate |
Get a map of valid lowercased string names and enum values.
References BRIGHTFIELD, DARKFIELD, DIC, FLUORESCENCE, HOFFMANMODULATION, OBLIQUEILLUMINATION, OTHER, PHASE, and POLARIZEDLIGHT.
Referenced by ContrastMethod().
|
inline |
|
inline |
|
static |
Get a map of valid string names and enum values.
References BRIGHTFIELD, DARKFIELD, DIC, FLUORESCENCE, HOFFMANMODULATION, OBLIQUEILLUMINATION, OTHER, PHASE, and POLARIZEDLIGHT.
Referenced by ContrastMethod().
|
static |
Get a map of valid enum values and string names.
References BRIGHTFIELD, DARKFIELD, DIC, FLUORESCENCE, HOFFMANMODULATION, OBLIQUEILLUMINATION, OTHER, PHASE, and POLARIZEDLIGHT.
Referenced by ContrastMethod().