ome-xml  5.6.0
UnitsTemperature.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_UNITSTEMPERATURE_H
47 #define OME_XML_MODEL_ENUMS_UNITSTEMPERATURE_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 #include <ome/xml/model/primitives/Quantity.h>
58 
59 // All values in the UnitsTemperature enumeration.
60 #define OME_XML_MODEL_ENUMS_UNITSTEMPERATURE_VALUES (CELSIUS)(FAHRENHEIT)(KELVIN)(RANKINE)
61 
62 namespace ome
63 {
64  namespace xml
65  {
66  namespace model
67  {
68  namespace enums
69  {
70 
75  {
76  public:
79  {
96  };
97 
104 
119  UnitsTemperature (const std::string& name, bool strict = true);
120 
126  UnitsTemperature (const UnitsTemperature& original);
127 
134  inline UnitsTemperature&
136  {
137  this->value = rhs.value;
138  this->name = rhs.name;
139  return *this;
140  }
141 
147  inline
148  operator enum_value () const
149  {
150  return this->value;
151  }
152 
158  inline
159  operator const std::string& () const
160  {
161  return *this->name;
162  }
163 
165  typedef std::map<std::string, UnitsTemperature::enum_value> string_map_type;
167  typedef std::map<UnitsTemperature::enum_value, std::string> value_map_type;
168 
174  static const string_map_type&
175  strings();
176 
182  static const value_map_type&
183  values();
184 
185  private:
191  static const string_map_type&
193 
197  const std::string *name;
198  };
199 
207  inline bool
209  const UnitsTemperature& rhs)
210  {
211  return static_cast<UnitsTemperature::enum_value>(lhs) == static_cast<UnitsTemperature::enum_value>(rhs);
212  }
213 
221  inline bool
223  const UnitsTemperature::enum_value& rhs)
224  {
225  return static_cast<UnitsTemperature::enum_value>(lhs) == rhs;
226  }
227 
235  inline bool
237  const UnitsTemperature& rhs)
238  {
239  return lhs == static_cast<UnitsTemperature::enum_value>(rhs);
240  }
241 
249  inline bool
251  const std::string& rhs)
252  {
253  return static_cast<const std::string&>(lhs) == rhs;
254  }
255 
263  inline bool
264  operator== (const std::string& lhs,
265  const UnitsTemperature& rhs)
266  {
267  return lhs == static_cast<const std::string&>(rhs);
268  }
269 
277  inline bool
279  const UnitsTemperature& rhs)
280  {
281  return static_cast<UnitsTemperature::enum_value>(lhs) != static_cast<UnitsTemperature::enum_value>(rhs);
282  }
283 
291  inline bool
293  const UnitsTemperature::enum_value& rhs)
294  {
295  return static_cast<UnitsTemperature::enum_value>(lhs) != rhs;
296  }
297 
305  inline bool
307  const UnitsTemperature& rhs)
308  {
309  return lhs != static_cast<UnitsTemperature::enum_value>(rhs);
310  }
311 
319  inline bool
321  const std::string& rhs)
322  {
323  return static_cast<const std::string&>(lhs) != rhs;
324  }
325 
333  inline bool
334  operator!= (const std::string& lhs,
335  const UnitsTemperature& rhs)
336  {
337  return lhs != static_cast<const std::string&>(rhs);
338  }
339 
347  template<class charT, class traits>
348  inline std::basic_ostream<charT,traits>&
349  operator<< (std::basic_ostream<charT,traits>& os,
350  const UnitsTemperature& enumeration)
351  {
352  return os << static_cast<const std::string&>(enumeration);
353  }
354 
362  template<class charT, class traits>
363  inline std::basic_istream<charT,traits>&
364  operator>> (std::basic_istream<charT,traits>& is,
365  UnitsTemperature& enumeration)
366  {
367  std::string value;
368  is >> value;
369  if (is)
370  {
371  try
372  {
373  enumeration = UnitsTemperature(value, false);
374  }
375  catch (const EnumerationException&)
376  {
377  is.setstate(std::ios::failbit);
378  }
379  }
380 
381  return is;
382  }
383 
384  }
385  }
386  }
387 }
388 
389 #include <ome/xml/model/enums/UnitsTemperatureConvert.h>
390 
391 #endif // OME_XML_MODEL_ENUMS_UNITSTEMPERATURE_H
392 
393 /*
394  * Local Variables:
395  * mode:C++
396  * End:
397  */
std::basic_istream< charT, traits > & operator>>(std::basic_istream< charT, traits > &is, AcquisitionMode &enumeration)
Set AcquisitionMode from input stream.
Definition: AcquisitionMode.h:392
bool operator!=(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for non-equality.
Definition: AcquisitionMode.h:306
enum_value
Enumeration values.
Definition: UnitsTemperature.h:78
degree Celsius unit.
Definition: UnitsTemperature.h:83
std::map< UnitsTemperature::enum_value, std::string > value_map_type
Value map type.
Definition: UnitsTemperature.h:167
EnumerationException is thrown when an enumeration is invalid or not found.
Definition: EnumerationException.h:74
UnitsTemperature enumeration.
Definition: UnitsTemperature.h:74
UnitsTemperature(enum_value value)
Construct a UnitsTemperature enumeration by an enumeration value.
Definition: UnitsTemperature.cpp:67
degree Fahrenheit unit.
Definition: UnitsTemperature.h:87
static const value_map_type & values()
Get a map of valid enum values and string names.
Definition: UnitsTemperature.cpp:144
std::map< std::string, UnitsTemperature::enum_value > string_map_type
String map type.
Definition: UnitsTemperature.h:165
UnitsTemperature & operator=(const UnitsTemperature &rhs)
Assignment operator.
Definition: UnitsTemperature.h:135
Open Microscopy Environment C++ implementation.
static const string_map_type & strings()
Get a map of valid string names and enum values.
Definition: UnitsTemperature.cpp:130
static const string_map_type & lowercase_strings()
Get a map of valid lowercased string names and enum values.
Definition: UnitsTemperature.cpp:158
bool operator==(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for equality.
Definition: AcquisitionMode.h:236
const std::string * name
Enumeration name.
Definition: UnitsTemperature.h:197
enum_value value
Enumeration value.
Definition: UnitsTemperature.h:195
degree Rankine unit.
Definition: UnitsTemperature.h:95
Kelvin unit.
Definition: UnitsTemperature.h:91