bioformats  5.1.3
FillRule.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_FILLRULE_H
47 #define OME_XML_MODEL_ENUMS_FILLRULE_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 
70  class FillRule
71  {
72  public:
75  {
80  };
81 
88 
103  FillRule (const std::string& name, bool strict = true);
104 
110  FillRule (const FillRule& original);
111 
116  inline FillRule&
117  operator= (const FillRule& rhs)
118  {
119  this->value = rhs.value;
120  this->name = rhs.name;
121  return *this;
122  }
123 
129  inline
130  operator enum_value () const
131  {
132  return this->value;
133  }
134 
140  inline
141  operator const std::string& () const
142  {
143  return *this->name;
144  }
145 
147  typedef std::map<std::string, FillRule::enum_value> string_map_type;
149  typedef std::map<FillRule::enum_value, std::string> value_map_type;
150 
156  static const string_map_type&
157  strings();
158 
164  static const value_map_type&
165  values();
166 
167  private:
171  const std::string *name;
172 
174  static const string_map_type string_map;
176  static const string_map_type lowercase_string_map;
178  static const value_map_type value_map;
179  };
180 
188  inline bool
189  operator== (const FillRule& lhs,
190  const FillRule& rhs)
191  {
192  return static_cast<FillRule::enum_value>(lhs) == static_cast<FillRule::enum_value>(rhs);
193  }
194 
202  inline bool
203  operator== (const FillRule& lhs,
204  const FillRule::enum_value& rhs)
205  {
206  return static_cast<FillRule::enum_value>(lhs) == rhs;
207  }
208 
216  inline bool
218  const FillRule& rhs)
219  {
220  return lhs == static_cast<FillRule::enum_value>(rhs);
221  }
222 
230  inline bool
231  operator== (const FillRule& lhs,
232  const std::string& rhs)
233  {
234  return static_cast<const std::string&>(lhs) == rhs;
235  }
236 
244  inline bool
245  operator== (const std::string& lhs,
246  const FillRule& rhs)
247  {
248  return lhs == static_cast<const std::string&>(rhs);
249  }
250 
258  inline bool
259  operator!= (const FillRule& lhs,
260  const FillRule& rhs)
261  {
262  return static_cast<FillRule::enum_value>(lhs) != static_cast<FillRule::enum_value>(rhs);
263  }
264 
272  inline bool
273  operator!= (const FillRule& lhs,
274  const FillRule::enum_value& rhs)
275  {
276  return static_cast<FillRule::enum_value>(lhs) != rhs;
277  }
278 
286  inline bool
288  const FillRule& rhs)
289  {
290  return lhs != static_cast<FillRule::enum_value>(rhs);
291  }
292 
300  inline bool
301  operator!= (const FillRule& lhs,
302  const std::string& rhs)
303  {
304  return static_cast<const std::string&>(lhs) != rhs;
305  }
306 
314  inline bool
315  operator!= (const std::string& lhs,
316  const FillRule& rhs)
317  {
318  return lhs != static_cast<const std::string&>(rhs);
319  }
320 
328  template<class charT, class traits>
329  inline std::basic_ostream<charT,traits>&
330  operator<< (std::basic_ostream<charT,traits>& os,
331  const FillRule& enumeration)
332  {
333  return os << static_cast<const std::string&>(enumeration);
334  }
335 
343  template<class charT, class traits>
344  inline std::basic_istream<charT,traits>&
345  operator>> (std::basic_istream<charT,traits>& is,
346  FillRule& enumeration)
347  {
348  std::string value;
349  is >> value;
350  if (is)
351  {
352  try
353  {
354  enumeration = FillRule(value, false);
355  }
356  catch (const EnumerationException& e)
357  {
358  is.setstate(std::ios::failbit);
359  }
360  }
361 
362  return is;
363  }
364 
365  }
366  }
367  }
368 }
369 
370 #endif // OME_XML_MODEL_ENUMS_FILLRULE_H
371 
372 /*
373  * Local Variables:
374  * mode:C++
375  * End:
376  */
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
static const string_map_type & strings()
Get a map of valid string names and enum values.
Definition: FillRule.cpp:68
FillRule & operator=(const FillRule &rhs)
Assignment operator.
Definition: FillRule.h:117
EnumerationException is thrown when an enumeration is invalid or not found.
Definition: EnumerationException.h:74
enum_value
Enumeration values.
Definition: FillRule.h:74
FillRule enumeration.
Definition: FillRule.h:70
enum_value value
Enumeration value.
Definition: FillRule.h:169
NonZero.
Definition: FillRule.h:79
const std::string * name
Enumeration name.
Definition: FillRule.h:171
Open Microscopy Environment C++ implementation.
Definition: CoreMetadata.cpp:40
std::map< std::string, FillRule::enum_value > string_map_type
String map type.
Definition: FillRule.h:147
bool operator==(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for equality.
Definition: AcquisitionMode.h:225
static const string_map_type lowercase_string_map
Mapping of lowercase enumeration name to value.
Definition: FillRule.h:176
static const value_map_type & values()
Get a map of valid enum values and string names.
Definition: FillRule.cpp:74
static const value_map_type value_map
Mapping of enumeration value to name.
Definition: FillRule.h:178
EvenOdd.
Definition: FillRule.h:77
std::map< FillRule::enum_value, std::string > value_map_type
Value map type.
Definition: FillRule.h:149
static const string_map_type string_map
Mapping of enumeration name to value.
Definition: FillRule.h:174
Boost.Log compatibility.
FillRule(enum_value value)
Construct a FillRule enumeration by an enumeration value.
Definition: FillRule.cpp:120
Xerces-C modern C++ wrapper.
Definition: Base.h:53