bioformats  5.1.3
DimensionOrder.h
1 /*
2  * #%L
3  * OME-XML C++ library for working with OME-XML metadata structures.
4  * %%
5  * Copyright © 2006 - 2015 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_DIMENSIONORDER_H
47 #define OME_XML_MODEL_ENUMS_DIMENSIONORDER_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 
58 namespace ome
59 {
60  namespace xml
61  {
62  namespace model
63  {
64  namespace enums
65  {
66 
71  {
72  public:
75  {
88  };
89 
96 
111  DimensionOrder (const std::string& name, bool strict = true);
112 
118  DimensionOrder (const DimensionOrder& original);
119 
124  inline DimensionOrder&
126  {
127  this->value = rhs.value;
128  this->name = rhs.name;
129  return *this;
130  }
131 
137  inline
138  operator enum_value () const
139  {
140  return this->value;
141  }
142 
148  inline
149  operator const std::string& () const
150  {
151  return *this->name;
152  }
153 
155  typedef std::map<std::string, DimensionOrder::enum_value> string_map_type;
157  typedef std::map<DimensionOrder::enum_value, std::string> value_map_type;
158 
164  static const string_map_type&
165  strings();
166 
172  static const value_map_type&
173  values();
174 
175  private:
179  const std::string *name;
180 
182  static const string_map_type string_map;
184  static const string_map_type lowercase_string_map;
186  static const value_map_type value_map;
187  };
188 
196  inline bool
198  const DimensionOrder& rhs)
199  {
200  return static_cast<DimensionOrder::enum_value>(lhs) == static_cast<DimensionOrder::enum_value>(rhs);
201  }
202 
210  inline bool
212  const DimensionOrder::enum_value& rhs)
213  {
214  return static_cast<DimensionOrder::enum_value>(lhs) == rhs;
215  }
216 
224  inline bool
226  const DimensionOrder& rhs)
227  {
228  return lhs == static_cast<DimensionOrder::enum_value>(rhs);
229  }
230 
238  inline bool
240  const std::string& rhs)
241  {
242  return static_cast<const std::string&>(lhs) == rhs;
243  }
244 
252  inline bool
253  operator== (const std::string& lhs,
254  const DimensionOrder& rhs)
255  {
256  return lhs == static_cast<const std::string&>(rhs);
257  }
258 
266  inline bool
268  const DimensionOrder& rhs)
269  {
270  return static_cast<DimensionOrder::enum_value>(lhs) != static_cast<DimensionOrder::enum_value>(rhs);
271  }
272 
280  inline bool
282  const DimensionOrder::enum_value& rhs)
283  {
284  return static_cast<DimensionOrder::enum_value>(lhs) != rhs;
285  }
286 
294  inline bool
296  const DimensionOrder& rhs)
297  {
298  return lhs != static_cast<DimensionOrder::enum_value>(rhs);
299  }
300 
308  inline bool
310  const std::string& rhs)
311  {
312  return static_cast<const std::string&>(lhs) != rhs;
313  }
314 
322  inline bool
323  operator!= (const std::string& lhs,
324  const DimensionOrder& rhs)
325  {
326  return lhs != static_cast<const std::string&>(rhs);
327  }
328 
336  template<class charT, class traits>
337  inline std::basic_ostream<charT,traits>&
338  operator<< (std::basic_ostream<charT,traits>& os,
339  const DimensionOrder& enumeration)
340  {
341  return os << static_cast<const std::string&>(enumeration);
342  }
343 
351  template<class charT, class traits>
352  inline std::basic_istream<charT,traits>&
353  operator>> (std::basic_istream<charT,traits>& is,
354  DimensionOrder& enumeration)
355  {
356  std::string value;
357  is >> value;
358  if (is)
359  {
360  try
361  {
362  enumeration = DimensionOrder(value, false);
363  }
364  catch (const EnumerationException& e)
365  {
366  is.setstate(std::ios::failbit);
367  }
368  }
369 
370  return is;
371  }
372 
373  }
374  }
375  }
376 }
377 
378 #endif // OME_XML_MODEL_ENUMS_DIMENSIONORDER_H
379 
380 /*
381  * Local Variables:
382  * mode:C++
383  * End:
384  */
std::basic_istream< charT, traits > & operator>>(std::basic_istream< charT, traits > &is, AcquisitionMode &enumeration)
Set AcquisitionMode from input stream.
Definition: AcquisitionMode.h:381
bool operator!=(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for non-equality.
Definition: AcquisitionMode.h:295
enum_value
Enumeration values.
Definition: DimensionOrder.h:74
EnumerationException is thrown when an enumeration is invalid or not found.
Definition: EnumerationException.h:74
DimensionOrder & operator=(const DimensionOrder &rhs)
Assignment operator.
Definition: DimensionOrder.h:125
XYCTZ.
Definition: DimensionOrder.h:81
static const value_map_type value_map
Mapping of enumeration value to name.
Definition: DimensionOrder.h:186
XYTZC.
Definition: DimensionOrder.h:87
static const string_map_type lowercase_string_map
Mapping of lowercase enumeration name to value.
Definition: DimensionOrder.h:184
DimensionOrder(enum_value value)
Construct a DimensionOrder enumeration by an enumeration value.
Definition: DimensionOrder.cpp:132
DimensionOrder enumeration.
Definition: DimensionOrder.h:70
const std::string * name
Enumeration name.
Definition: DimensionOrder.h:179
static const string_map_type string_map
Mapping of enumeration name to value.
Definition: DimensionOrder.h:182
std::map< DimensionOrder::enum_value, std::string > value_map_type
Value map type.
Definition: DimensionOrder.h:157
Open Microscopy Environment C++ implementation.
Definition: CoreMetadata.cpp:40
XYZCT.
Definition: DimensionOrder.h:77
bool operator==(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for equality.
Definition: AcquisitionMode.h:225
static const value_map_type & values()
Get a map of valid enum values and string names.
Definition: DimensionOrder.cpp:74
XYTCZ.
Definition: DimensionOrder.h:85
enum_value value
Enumeration value.
Definition: DimensionOrder.h:177
XYZTC.
Definition: DimensionOrder.h:79
std::map< std::string, DimensionOrder::enum_value > string_map_type
String map type.
Definition: DimensionOrder.h:155
static const string_map_type & strings()
Get a map of valid string names and enum values.
Definition: DimensionOrder.cpp:68
Boost.Log compatibility.
XYCZT.
Definition: DimensionOrder.h:83
Xerces-C modern C++ wrapper.
Definition: Base.h:53