ome-xml  5.2.2
LaserMedium.h
1 /*
2  * #%L
3  * OME-XML C++ library for working with OME-XML metadata structures.
4  * %%
5  * Copyright © 2006 - 2016 Open Microscopy Environment:
6  * - Massachusetts Institute of Technology
7  * - National Institutes of Health
8  * - University of Dundee
9  * - Board of Regents of the University of Wisconsin-Madison
10  * - Glencoe Software, Inc.
11  * %%
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions are met:
14  *
15  * 1. Redistributions of source code must retain the above copyright notice,
16  * this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright notice,
18  * this list of conditions and the following disclaimer in the documentation
19  * and/or other materials provided with the distribution.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  *
33  * The views and conclusions contained in the software and documentation are
34  * those of the authors and should not be interpreted as representing official
35  * policies, either expressed or implied, of any organization.
36  * #L%
37  */
38 
39 /*─────────────────────────────────────────────────────────────────────────────
40  *
41  * THIS IS AUTOMATICALLY GENERATED CODE. DO NOT MODIFY.
42  *
43  *─────────────────────────────────────────────────────────────────────────────
44  */
45 
46 #ifndef OME_XML_MODEL_ENUMS_LASERMEDIUM_H
47 #define OME_XML_MODEL_ENUMS_LASERMEDIUM_H
48 
49 #include <ostream>
50 #include <map>
51 #include <string>
52 
53 #include <ome/common/log.h>
54 
55 #include <ome/xml/model/enums/EnumerationException.h>
56 
57 // All values in the LaserMedium enumeration.
58 #define OME_XML_MODEL_ENUMS_LASERMEDIUM_VALUES (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)
59 
60 namespace ome
61 {
62  namespace xml
63  {
64  namespace model
65  {
66  namespace enums
67  {
68 
73  {
74  public:
77  {
79  CU,
81  AG,
97  N,
99  AR,
101  KR,
103  XE,
109  CO,
146  };
147 
154 
169  LaserMedium (const std::string& name, bool strict = true);
170 
176  LaserMedium (const LaserMedium& original);
177 
182  inline LaserMedium&
184  {
185  this->value = rhs.value;
186  this->name = rhs.name;
187  return *this;
188  }
189 
195  inline
196  operator enum_value () const
197  {
198  return this->value;
199  }
200 
206  inline
207  operator const std::string& () const
208  {
209  return *this->name;
210  }
211 
213  typedef std::map<std::string, LaserMedium::enum_value> string_map_type;
215  typedef std::map<LaserMedium::enum_value, std::string> value_map_type;
216 
222  static const string_map_type&
223  strings();
224 
230  static const value_map_type&
231  values();
232 
233  private:
239  static const string_map_type&
241 
245  const std::string *name;
246  };
247 
255  inline bool
257  const LaserMedium& rhs)
258  {
259  return static_cast<LaserMedium::enum_value>(lhs) == static_cast<LaserMedium::enum_value>(rhs);
260  }
261 
269  inline bool
271  const LaserMedium::enum_value& rhs)
272  {
273  return static_cast<LaserMedium::enum_value>(lhs) == rhs;
274  }
275 
283  inline bool
285  const LaserMedium& rhs)
286  {
287  return lhs == static_cast<LaserMedium::enum_value>(rhs);
288  }
289 
297  inline bool
299  const std::string& rhs)
300  {
301  return static_cast<const std::string&>(lhs) == rhs;
302  }
303 
311  inline bool
312  operator== (const std::string& lhs,
313  const LaserMedium& rhs)
314  {
315  return lhs == static_cast<const std::string&>(rhs);
316  }
317 
325  inline bool
327  const LaserMedium& rhs)
328  {
329  return static_cast<LaserMedium::enum_value>(lhs) != static_cast<LaserMedium::enum_value>(rhs);
330  }
331 
339  inline bool
341  const LaserMedium::enum_value& rhs)
342  {
343  return static_cast<LaserMedium::enum_value>(lhs) != rhs;
344  }
345 
353  inline bool
355  const LaserMedium& rhs)
356  {
357  return lhs != static_cast<LaserMedium::enum_value>(rhs);
358  }
359 
367  inline bool
369  const std::string& rhs)
370  {
371  return static_cast<const std::string&>(lhs) != rhs;
372  }
373 
381  inline bool
382  operator!= (const std::string& lhs,
383  const LaserMedium& rhs)
384  {
385  return lhs != static_cast<const std::string&>(rhs);
386  }
387 
395  template<class charT, class traits>
396  inline std::basic_ostream<charT,traits>&
397  operator<< (std::basic_ostream<charT,traits>& os,
398  const LaserMedium& enumeration)
399  {
400  return os << static_cast<const std::string&>(enumeration);
401  }
402 
410  template<class charT, class traits>
411  inline std::basic_istream<charT,traits>&
412  operator>> (std::basic_istream<charT,traits>& is,
413  LaserMedium& enumeration)
414  {
415  std::string value;
416  is >> value;
417  if (is)
418  {
419  try
420  {
421  enumeration = LaserMedium(value, false);
422  }
423  catch (const EnumerationException&)
424  {
425  is.setstate(std::ios::failbit);
426  }
427  }
428 
429  return is;
430  }
431 
432  }
433  }
434  }
435 }
436 
437 #endif // OME_XML_MODEL_ENUMS_LASERMEDIUM_H
438 
439 /*
440  * Local Variables:
441  * mode:C++
442  * End:
443  */
std::basic_istream< charT, traits > & operator>>(std::basic_istream< charT, traits > &is, AcquisitionMode &enumeration)
Set AcquisitionMode from input stream.
Definition: AcquisitionMode.h:384
enum_value
Enumeration values.
Definition: LaserMedium.h:76
bool operator!=(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for non-equality.
Definition: AcquisitionMode.h:298
GaAlAs.
Definition: LaserMedium.h:141
XeFl.
Definition: LaserMedium.h:91
Ar.
Definition: LaserMedium.h:99
NdGlass.
Definition: LaserMedium.h:117
Other.
Definition: LaserMedium.h:145
CO.
Definition: LaserMedium.h:109
CoumarinC30.
Definition: LaserMedium.h:137
EnumerationException is thrown when an enumeration is invalid or not found.
Definition: EnumerationException.h:74
Kr.
Definition: LaserMedium.h:101
GaAs.
Definition: LaserMedium.h:139
ArFl.
Definition: LaserMedium.h:83
XeBr.
Definition: LaserMedium.h:95
CO2.
Definition: LaserMedium.h:111
Alexandrite.
Definition: LaserMedium.h:133
HeNe.
Definition: LaserMedium.h:105
HoYAG.
Definition: LaserMedium.h:127
H2O.
Definition: LaserMedium.h:113
Ruby.
Definition: LaserMedium.h:129
const std::string * name
Enumeration name.
Definition: LaserMedium.h:245
ErYAG.
Definition: LaserMedium.h:123
XeCl.
Definition: LaserMedium.h:93
Ag.
Definition: LaserMedium.h:81
static const value_map_type & values()
Get a map of valid enum values and string names.
Definition: LaserMedium.cpp:200
HeCd.
Definition: LaserMedium.h:107
Rhodamine6G.
Definition: LaserMedium.h:135
ErGlass.
Definition: LaserMedium.h:121
EMinus.
Definition: LaserMedium.h:143
std::map< std::string, LaserMedium::enum_value > string_map_type
String map type.
Definition: LaserMedium.h:213
Open Microscopy Environment C++ implementation.
TiSapphire.
Definition: LaserMedium.h:131
ArCl.
Definition: LaserMedium.h:85
HFl.
Definition: LaserMedium.h:115
enum_value value
Enumeration value.
Definition: LaserMedium.h:243
bool operator==(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for equality.
Definition: AcquisitionMode.h:228
NdYAG.
Definition: LaserMedium.h:119
LaserMedium & operator=(const LaserMedium &rhs)
Assignment operator.
Definition: LaserMedium.h:183
std::map< LaserMedium::enum_value, std::string > value_map_type
Value map type.
Definition: LaserMedium.h:215
KrCl.
Definition: LaserMedium.h:89
static const string_map_type & lowercase_strings()
Get a map of valid lowercased string names and enum values.
Definition: LaserMedium.cpp:247
static const string_map_type & strings()
Get a map of valid string names and enum values.
Definition: LaserMedium.cpp:153
N.
Definition: LaserMedium.h:97
Xe.
Definition: LaserMedium.h:103
KrFl.
Definition: LaserMedium.h:87
LaserMedium(enum_value value)
Construct a LaserMedium enumeration by an enumeration value.
Definition: LaserMedium.cpp:75
Cu.
Definition: LaserMedium.h:79
HoYLF.
Definition: LaserMedium.h:125
LaserMedium enumeration.
Definition: LaserMedium.h:72