ome-xml  5.6.0
DimensionOrder.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_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 // All values in the DimensionOrder enumeration.
58 #define OME_XML_MODEL_ENUMS_DIMENSIONORDER_VALUES (XYZCT)(XYZTC)(XYCTZ)(XYCZT)(XYTCZ)(XYTZC)
59 
60 namespace ome
61 {
62  namespace xml
63  {
64  namespace model
65  {
66  namespace enums
67  {
68 
73  {
74  public:
77  {
90  };
91 
98 
113  DimensionOrder (const std::string& name, bool strict = true);
114 
120  DimensionOrder (const DimensionOrder& original);
121 
128  inline DimensionOrder&
130  {
131  this->value = rhs.value;
132  this->name = rhs.name;
133  return *this;
134  }
135 
141  inline
142  operator enum_value () const
143  {
144  return this->value;
145  }
146 
152  inline
153  operator const std::string& () const
154  {
155  return *this->name;
156  }
157 
159  typedef std::map<std::string, DimensionOrder::enum_value> string_map_type;
161  typedef std::map<DimensionOrder::enum_value, std::string> value_map_type;
162 
168  static const string_map_type&
169  strings();
170 
176  static const value_map_type&
177  values();
178 
179  private:
185  static const string_map_type&
187 
191  const std::string *name;
192  };
193 
201  inline bool
203  const DimensionOrder& rhs)
204  {
205  return static_cast<DimensionOrder::enum_value>(lhs) == static_cast<DimensionOrder::enum_value>(rhs);
206  }
207 
215  inline bool
217  const DimensionOrder::enum_value& rhs)
218  {
219  return static_cast<DimensionOrder::enum_value>(lhs) == rhs;
220  }
221 
229  inline bool
231  const DimensionOrder& rhs)
232  {
233  return lhs == static_cast<DimensionOrder::enum_value>(rhs);
234  }
235 
243  inline bool
245  const std::string& rhs)
246  {
247  return static_cast<const std::string&>(lhs) == rhs;
248  }
249 
257  inline bool
258  operator== (const std::string& lhs,
259  const DimensionOrder& rhs)
260  {
261  return lhs == static_cast<const std::string&>(rhs);
262  }
263 
271  inline bool
273  const DimensionOrder& rhs)
274  {
275  return static_cast<DimensionOrder::enum_value>(lhs) != static_cast<DimensionOrder::enum_value>(rhs);
276  }
277 
285  inline bool
287  const DimensionOrder::enum_value& rhs)
288  {
289  return static_cast<DimensionOrder::enum_value>(lhs) != rhs;
290  }
291 
299  inline bool
301  const DimensionOrder& rhs)
302  {
303  return lhs != static_cast<DimensionOrder::enum_value>(rhs);
304  }
305 
313  inline bool
315  const std::string& rhs)
316  {
317  return static_cast<const std::string&>(lhs) != rhs;
318  }
319 
327  inline bool
328  operator!= (const std::string& lhs,
329  const DimensionOrder& rhs)
330  {
331  return lhs != static_cast<const std::string&>(rhs);
332  }
333 
341  template<class charT, class traits>
342  inline std::basic_ostream<charT,traits>&
343  operator<< (std::basic_ostream<charT,traits>& os,
344  const DimensionOrder& enumeration)
345  {
346  return os << static_cast<const std::string&>(enumeration);
347  }
348 
356  template<class charT, class traits>
357  inline std::basic_istream<charT,traits>&
358  operator>> (std::basic_istream<charT,traits>& is,
359  DimensionOrder& enumeration)
360  {
361  std::string value;
362  is >> value;
363  if (is)
364  {
365  try
366  {
367  enumeration = DimensionOrder(value, false);
368  }
369  catch (const EnumerationException&)
370  {
371  is.setstate(std::ios::failbit);
372  }
373  }
374 
375  return is;
376  }
377 
378  }
379  }
380  }
381 }
382 
383 #endif // OME_XML_MODEL_ENUMS_DIMENSIONORDER_H
384 
385 /*
386  * Local Variables:
387  * mode:C++
388  * End:
389  */
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
static const string_map_type & lowercase_strings()
Get a map of valid lowercased string names and enum values.
Definition: DimensionOrder.cpp:162
enum_value
Enumeration values.
Definition: DimensionOrder.h:76
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:129
XYCTZ.
Definition: DimensionOrder.h:83
XYTZC.
Definition: DimensionOrder.h:89
DimensionOrder(enum_value value)
Construct a DimensionOrder enumeration by an enumeration value.
Definition: DimensionOrder.cpp:67
DimensionOrder enumeration.
Definition: DimensionOrder.h:72
const std::string * name
Enumeration name.
Definition: DimensionOrder.h:191
std::map< DimensionOrder::enum_value, std::string > value_map_type
Value map type.
Definition: DimensionOrder.h:161
Open Microscopy Environment C++ implementation.
XYZCT.
Definition: DimensionOrder.h:79
bool operator==(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for equality.
Definition: AcquisitionMode.h:236
static const value_map_type & values()
Get a map of valid enum values and string names.
Definition: DimensionOrder.cpp:146
XYTCZ.
Definition: DimensionOrder.h:87
enum_value value
Enumeration value.
Definition: DimensionOrder.h:189
XYZTC.
Definition: DimensionOrder.h:81
std::map< std::string, DimensionOrder::enum_value > string_map_type
String map type.
Definition: DimensionOrder.h:159
static const string_map_type & strings()
Get a map of valid string names and enum values.
Definition: DimensionOrder.cpp:130
XYCZT.
Definition: DimensionOrder.h:85