bioformats  5.1.3
LineCap.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_LINECAP_H
47 #define OME_XML_MODEL_ENUMS_LINECAP_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 LineCap
71  {
72  public:
75  {
82  };
83 
90 
105  LineCap (const std::string& name, bool strict = true);
106 
112  LineCap (const LineCap& original);
113 
118  inline LineCap&
119  operator= (const LineCap& rhs)
120  {
121  this->value = rhs.value;
122  this->name = rhs.name;
123  return *this;
124  }
125 
131  inline
132  operator enum_value () const
133  {
134  return this->value;
135  }
136 
142  inline
143  operator const std::string& () const
144  {
145  return *this->name;
146  }
147 
149  typedef std::map<std::string, LineCap::enum_value> string_map_type;
151  typedef std::map<LineCap::enum_value, std::string> value_map_type;
152 
158  static const string_map_type&
159  strings();
160 
166  static const value_map_type&
167  values();
168 
169  private:
173  const std::string *name;
174 
176  static const string_map_type string_map;
178  static const string_map_type lowercase_string_map;
180  static const value_map_type value_map;
181  };
182 
190  inline bool
191  operator== (const LineCap& lhs,
192  const LineCap& rhs)
193  {
194  return static_cast<LineCap::enum_value>(lhs) == static_cast<LineCap::enum_value>(rhs);
195  }
196 
204  inline bool
205  operator== (const LineCap& lhs,
206  const LineCap::enum_value& rhs)
207  {
208  return static_cast<LineCap::enum_value>(lhs) == rhs;
209  }
210 
218  inline bool
220  const LineCap& rhs)
221  {
222  return lhs == static_cast<LineCap::enum_value>(rhs);
223  }
224 
232  inline bool
233  operator== (const LineCap& lhs,
234  const std::string& rhs)
235  {
236  return static_cast<const std::string&>(lhs) == rhs;
237  }
238 
246  inline bool
247  operator== (const std::string& lhs,
248  const LineCap& rhs)
249  {
250  return lhs == static_cast<const std::string&>(rhs);
251  }
252 
260  inline bool
261  operator!= (const LineCap& lhs,
262  const LineCap& rhs)
263  {
264  return static_cast<LineCap::enum_value>(lhs) != static_cast<LineCap::enum_value>(rhs);
265  }
266 
274  inline bool
275  operator!= (const LineCap& lhs,
276  const LineCap::enum_value& rhs)
277  {
278  return static_cast<LineCap::enum_value>(lhs) != rhs;
279  }
280 
288  inline bool
290  const LineCap& rhs)
291  {
292  return lhs != static_cast<LineCap::enum_value>(rhs);
293  }
294 
302  inline bool
303  operator!= (const LineCap& lhs,
304  const std::string& rhs)
305  {
306  return static_cast<const std::string&>(lhs) != rhs;
307  }
308 
316  inline bool
317  operator!= (const std::string& lhs,
318  const LineCap& rhs)
319  {
320  return lhs != static_cast<const std::string&>(rhs);
321  }
322 
330  template<class charT, class traits>
331  inline std::basic_ostream<charT,traits>&
332  operator<< (std::basic_ostream<charT,traits>& os,
333  const LineCap& enumeration)
334  {
335  return os << static_cast<const std::string&>(enumeration);
336  }
337 
345  template<class charT, class traits>
346  inline std::basic_istream<charT,traits>&
347  operator>> (std::basic_istream<charT,traits>& is,
348  LineCap& enumeration)
349  {
350  std::string value;
351  is >> value;
352  if (is)
353  {
354  try
355  {
356  enumeration = LineCap(value, false);
357  }
358  catch (const EnumerationException& e)
359  {
360  is.setstate(std::ios::failbit);
361  }
362  }
363 
364  return is;
365  }
366 
367  }
368  }
369  }
370 }
371 
372 #endif // OME_XML_MODEL_ENUMS_LINECAP_H
373 
374 /*
375  * Local Variables:
376  * mode:C++
377  * End:
378  */
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
Line.
Definition: LineCap.h:79
const std::string * name
Enumeration name.
Definition: LineCap.h:173
EnumerationException is thrown when an enumeration is invalid or not found.
Definition: EnumerationException.h:74
LineCap(enum_value value)
Construct a LineCap enumeration by an enumeration value.
Definition: LineCap.cpp:123
LineCap & operator=(const LineCap &rhs)
Assignment operator.
Definition: LineCap.h:119
Square.
Definition: LineCap.h:81
Butt.
Definition: LineCap.h:77
static const value_map_type & values()
Get a map of valid enum values and string names.
Definition: LineCap.cpp:74
std::map< LineCap::enum_value, std::string > value_map_type
Value map type.
Definition: LineCap.h:151
Open Microscopy Environment C++ implementation.
Definition: CoreMetadata.cpp:40
enum_value value
Enumeration value.
Definition: LineCap.h:171
static const string_map_type lowercase_string_map
Mapping of lowercase enumeration name to value.
Definition: LineCap.h:178
bool operator==(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for equality.
Definition: AcquisitionMode.h:225
static const string_map_type & strings()
Get a map of valid string names and enum values.
Definition: LineCap.cpp:68
LineCap enumeration.
Definition: LineCap.h:70
static const string_map_type string_map
Mapping of enumeration name to value.
Definition: LineCap.h:176
static const value_map_type value_map
Mapping of enumeration value to name.
Definition: LineCap.h:180
std::map< std::string, LineCap::enum_value > string_map_type
String map type.
Definition: LineCap.h:149
Boost.Log compatibility.
enum_value
Enumeration values.
Definition: LineCap.h:74
Xerces-C modern C++ wrapper.
Definition: Base.h:53