ome-xml  5.2.0
Marker.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_MARKER_H
47 #define OME_XML_MODEL_ENUMS_MARKER_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 Marker enumeration.
58 #define OME_XML_MODEL_ENUMS_MARKER_VALUES (ARROW)(CIRCLE)(SQUARE)
59 
60 namespace ome
61 {
62  namespace xml
63  {
64  namespace model
65  {
66  namespace enums
67  {
68 
72  class Marker
73  {
74  public:
77  {
84  };
85 
92 
107  Marker (const std::string& name, bool strict = true);
108 
114  Marker (const Marker& original);
115 
120  inline Marker&
121  operator= (const Marker& rhs)
122  {
123  this->value = rhs.value;
124  this->name = rhs.name;
125  return *this;
126  }
127 
133  inline
134  operator enum_value () const
135  {
136  return this->value;
137  }
138 
144  inline
145  operator const std::string& () const
146  {
147  return *this->name;
148  }
149 
151  typedef std::map<std::string, Marker::enum_value> string_map_type;
153  typedef std::map<Marker::enum_value, std::string> value_map_type;
154 
160  static const string_map_type&
161  strings();
162 
168  static const value_map_type&
169  values();
170 
171  private:
177  static const string_map_type&
179 
183  const std::string *name;
184  };
185 
193  inline bool
194  operator== (const Marker& lhs,
195  const Marker& rhs)
196  {
197  return static_cast<Marker::enum_value>(lhs) == static_cast<Marker::enum_value>(rhs);
198  }
199 
207  inline bool
208  operator== (const Marker& lhs,
209  const Marker::enum_value& rhs)
210  {
211  return static_cast<Marker::enum_value>(lhs) == rhs;
212  }
213 
221  inline bool
223  const Marker& rhs)
224  {
225  return lhs == static_cast<Marker::enum_value>(rhs);
226  }
227 
235  inline bool
236  operator== (const Marker& lhs,
237  const std::string& rhs)
238  {
239  return static_cast<const std::string&>(lhs) == rhs;
240  }
241 
249  inline bool
250  operator== (const std::string& lhs,
251  const Marker& rhs)
252  {
253  return lhs == static_cast<const std::string&>(rhs);
254  }
255 
263  inline bool
264  operator!= (const Marker& lhs,
265  const Marker& rhs)
266  {
267  return static_cast<Marker::enum_value>(lhs) != static_cast<Marker::enum_value>(rhs);
268  }
269 
277  inline bool
278  operator!= (const Marker& lhs,
279  const Marker::enum_value& rhs)
280  {
281  return static_cast<Marker::enum_value>(lhs) != rhs;
282  }
283 
291  inline bool
293  const Marker& rhs)
294  {
295  return lhs != static_cast<Marker::enum_value>(rhs);
296  }
297 
305  inline bool
306  operator!= (const Marker& lhs,
307  const std::string& rhs)
308  {
309  return static_cast<const std::string&>(lhs) != rhs;
310  }
311 
319  inline bool
320  operator!= (const std::string& lhs,
321  const Marker& rhs)
322  {
323  return lhs != static_cast<const std::string&>(rhs);
324  }
325 
333  template<class charT, class traits>
334  inline std::basic_ostream<charT,traits>&
335  operator<< (std::basic_ostream<charT,traits>& os,
336  const Marker& enumeration)
337  {
338  return os << static_cast<const std::string&>(enumeration);
339  }
340 
348  template<class charT, class traits>
349  inline std::basic_istream<charT,traits>&
350  operator>> (std::basic_istream<charT,traits>& is,
351  Marker& enumeration)
352  {
353  std::string value;
354  is >> value;
355  if (is)
356  {
357  try
358  {
359  enumeration = Marker(value, false);
360  }
361  catch (const EnumerationException&)
362  {
363  is.setstate(std::ios::failbit);
364  }
365  }
366 
367  return is;
368  }
369 
370  }
371  }
372  }
373 }
374 
375 #endif // OME_XML_MODEL_ENUMS_MARKER_H
376 
377 /*
378  * Local Variables:
379  * mode:C++
380  * End:
381  */
std::basic_istream< charT, traits > & operator>>(std::basic_istream< charT, traits > &is, AcquisitionMode &enumeration)
Set AcquisitionMode from input stream.
Definition: AcquisitionMode.h:384
bool operator!=(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for non-equality.
Definition: AcquisitionMode.h:298
Arrow.
Definition: Marker.h:79
Square.
Definition: Marker.h:83
EnumerationException is thrown when an enumeration is invalid or not found.
Definition: EnumerationException.h:74
static const value_map_type & values()
Get a map of valid enum values and string names.
Definition: Marker.cpp:154
enum_value
Enumeration values.
Definition: Marker.h:76
Marker enumeration.
Definition: Marker.h:72
Circle.
Definition: Marker.h:81
std::map< std::string, Marker::enum_value > string_map_type
String map type.
Definition: Marker.h:151
static const string_map_type & strings()
Get a map of valid string names and enum values.
Definition: Marker.cpp:138
static const string_map_type & lowercase_strings()
Get a map of valid lowercased string names and enum values.
Definition: Marker.cpp:170
Open Microscopy Environment C++ implementation.
std::map< Marker::enum_value, std::string > value_map_type
Value map type.
Definition: Marker.h:153
Marker(enum_value value)
Construct a Marker enumeration by an enumeration value.
Definition: Marker.cpp:75
bool operator==(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for equality.
Definition: AcquisitionMode.h:228
enum_value value
Enumeration value.
Definition: Marker.h:181
const std::string * name
Enumeration name.
Definition: Marker.h:183
Marker & operator=(const Marker &rhs)
Assignment operator.
Definition: Marker.h:121