ome-xml  5.2.4
Pulse.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_PULSE_H
47 #define OME_XML_MODEL_ENUMS_PULSE_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 Pulse enumeration.
58 #define OME_XML_MODEL_ENUMS_PULSE_VALUES (CW)(SINGLE)(QSWITCHED)(REPETITIVE)(MODELOCKED)(OTHER)
59 
60 namespace ome
61 {
62  namespace xml
63  {
64  namespace model
65  {
66  namespace enums
67  {
68 
72  class Pulse
73  {
74  public:
77  {
79  CW,
90  };
91 
98 
113  Pulse (const std::string& name, bool strict = true);
114 
120  Pulse (const Pulse& original);
121 
126  inline Pulse&
127  operator= (const Pulse& rhs)
128  {
129  this->value = rhs.value;
130  this->name = rhs.name;
131  return *this;
132  }
133 
139  inline
140  operator enum_value () const
141  {
142  return this->value;
143  }
144 
150  inline
151  operator const std::string& () const
152  {
153  return *this->name;
154  }
155 
157  typedef std::map<std::string, Pulse::enum_value> string_map_type;
159  typedef std::map<Pulse::enum_value, std::string> value_map_type;
160 
166  static const string_map_type&
167  strings();
168 
174  static const value_map_type&
175  values();
176 
177  private:
183  static const string_map_type&
185 
189  const std::string *name;
190  };
191 
199  inline bool
200  operator== (const Pulse& lhs,
201  const Pulse& rhs)
202  {
203  return static_cast<Pulse::enum_value>(lhs) == static_cast<Pulse::enum_value>(rhs);
204  }
205 
213  inline bool
214  operator== (const Pulse& lhs,
215  const Pulse::enum_value& rhs)
216  {
217  return static_cast<Pulse::enum_value>(lhs) == rhs;
218  }
219 
227  inline bool
229  const Pulse& rhs)
230  {
231  return lhs == static_cast<Pulse::enum_value>(rhs);
232  }
233 
241  inline bool
242  operator== (const Pulse& lhs,
243  const std::string& rhs)
244  {
245  return static_cast<const std::string&>(lhs) == rhs;
246  }
247 
255  inline bool
256  operator== (const std::string& lhs,
257  const Pulse& rhs)
258  {
259  return lhs == static_cast<const std::string&>(rhs);
260  }
261 
269  inline bool
270  operator!= (const Pulse& lhs,
271  const Pulse& rhs)
272  {
273  return static_cast<Pulse::enum_value>(lhs) != static_cast<Pulse::enum_value>(rhs);
274  }
275 
283  inline bool
284  operator!= (const Pulse& lhs,
285  const Pulse::enum_value& rhs)
286  {
287  return static_cast<Pulse::enum_value>(lhs) != rhs;
288  }
289 
297  inline bool
299  const Pulse& rhs)
300  {
301  return lhs != static_cast<Pulse::enum_value>(rhs);
302  }
303 
311  inline bool
312  operator!= (const Pulse& lhs,
313  const std::string& rhs)
314  {
315  return static_cast<const std::string&>(lhs) != rhs;
316  }
317 
325  inline bool
326  operator!= (const std::string& lhs,
327  const Pulse& rhs)
328  {
329  return lhs != static_cast<const std::string&>(rhs);
330  }
331 
339  template<class charT, class traits>
340  inline std::basic_ostream<charT,traits>&
341  operator<< (std::basic_ostream<charT,traits>& os,
342  const Pulse& enumeration)
343  {
344  return os << static_cast<const std::string&>(enumeration);
345  }
346 
354  template<class charT, class traits>
355  inline std::basic_istream<charT,traits>&
356  operator>> (std::basic_istream<charT,traits>& is,
357  Pulse& enumeration)
358  {
359  std::string value;
360  is >> value;
361  if (is)
362  {
363  try
364  {
365  enumeration = Pulse(value, false);
366  }
367  catch (const EnumerationException&)
368  {
369  is.setstate(std::ios::failbit);
370  }
371  }
372 
373  return is;
374  }
375 
376  }
377  }
378  }
379 }
380 
381 #endif // OME_XML_MODEL_ENUMS_PULSE_H
382 
383 /*
384  * Local Variables:
385  * mode:C++
386  * End:
387  */
std::basic_istream< charT, traits > & operator>>(std::basic_istream< charT, traits > &is, AcquisitionMode &enumeration)
Set AcquisitionMode from input stream.
Definition: AcquisitionMode.h:390
std::map< std::string, Pulse::enum_value > string_map_type
String map type.
Definition: Pulse.h:157
bool operator!=(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for non-equality.
Definition: AcquisitionMode.h:304
EnumerationException is thrown when an enumeration is invalid or not found.
Definition: EnumerationException.h:74
Pulse & operator=(const Pulse &rhs)
Assignment operator.
Definition: Pulse.h:127
CW.
Definition: Pulse.h:79
Pulse enumeration.
Definition: Pulse.h:72
Other.
Definition: Pulse.h:89
ModeLocked.
Definition: Pulse.h:87
Repetitive.
Definition: Pulse.h:85
static const string_map_type & strings()
Get a map of valid string names and enum values.
Definition: Pulse.cpp:153
QSwitched.
Definition: Pulse.h:83
Open Microscopy Environment C++ implementation.
enum_value value
Enumeration value.
Definition: Pulse.h:187
Single.
Definition: Pulse.h:81
static const value_map_type & values()
Get a map of valid enum values and string names.
Definition: Pulse.cpp:172
bool operator==(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for equality.
Definition: AcquisitionMode.h:234
const std::string * name
Enumeration name.
Definition: Pulse.h:189
static const string_map_type & lowercase_strings()
Get a map of valid lowercased string names and enum values.
Definition: Pulse.cpp:191
Pulse(enum_value value)
Construct a Pulse enumeration by an enumeration value.
Definition: Pulse.cpp:75
enum_value
Enumeration values.
Definition: Pulse.h:76
std::map< Pulse::enum_value, std::string > value_map_type
Value map type.
Definition: Pulse.h:159