bioformats  5.1.3
FilterType.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_FILTERTYPE_H
47 #define OME_XML_MODEL_ENUMS_FILTERTYPE_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 FilterType
71  {
72  public:
75  {
92  };
93 
100 
115  FilterType (const std::string& name, bool strict = true);
116 
122  FilterType (const FilterType& original);
123 
128  inline FilterType&
129  operator= (const FilterType& rhs)
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, FilterType::enum_value> string_map_type;
161  typedef std::map<FilterType::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:
183  const std::string *name;
184 
186  static const string_map_type string_map;
188  static const string_map_type lowercase_string_map;
190  static const value_map_type value_map;
191  };
192 
200  inline bool
202  const FilterType& rhs)
203  {
204  return static_cast<FilterType::enum_value>(lhs) == static_cast<FilterType::enum_value>(rhs);
205  }
206 
214  inline bool
216  const FilterType::enum_value& rhs)
217  {
218  return static_cast<FilterType::enum_value>(lhs) == rhs;
219  }
220 
228  inline bool
230  const FilterType& rhs)
231  {
232  return lhs == static_cast<FilterType::enum_value>(rhs);
233  }
234 
242  inline bool
244  const std::string& rhs)
245  {
246  return static_cast<const std::string&>(lhs) == rhs;
247  }
248 
256  inline bool
257  operator== (const std::string& lhs,
258  const FilterType& rhs)
259  {
260  return lhs == static_cast<const std::string&>(rhs);
261  }
262 
270  inline bool
272  const FilterType& rhs)
273  {
274  return static_cast<FilterType::enum_value>(lhs) != static_cast<FilterType::enum_value>(rhs);
275  }
276 
284  inline bool
286  const FilterType::enum_value& rhs)
287  {
288  return static_cast<FilterType::enum_value>(lhs) != rhs;
289  }
290 
298  inline bool
300  const FilterType& rhs)
301  {
302  return lhs != static_cast<FilterType::enum_value>(rhs);
303  }
304 
312  inline bool
314  const std::string& rhs)
315  {
316  return static_cast<const std::string&>(lhs) != rhs;
317  }
318 
326  inline bool
327  operator!= (const std::string& lhs,
328  const FilterType& rhs)
329  {
330  return lhs != static_cast<const std::string&>(rhs);
331  }
332 
340  template<class charT, class traits>
341  inline std::basic_ostream<charT,traits>&
342  operator<< (std::basic_ostream<charT,traits>& os,
343  const FilterType& enumeration)
344  {
345  return os << static_cast<const std::string&>(enumeration);
346  }
347 
355  template<class charT, class traits>
356  inline std::basic_istream<charT,traits>&
357  operator>> (std::basic_istream<charT,traits>& is,
358  FilterType& enumeration)
359  {
360  std::string value;
361  is >> value;
362  if (is)
363  {
364  try
365  {
366  enumeration = FilterType(value, false);
367  }
368  catch (const EnumerationException& e)
369  {
370  is.setstate(std::ios::failbit);
371  }
372  }
373 
374  return is;
375  }
376 
377  }
378  }
379  }
380 }
381 
382 #endif // OME_XML_MODEL_ENUMS_FILTERTYPE_H
383 
384 /*
385  * Local Variables:
386  * mode:C++
387  * End:
388  */
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 lowercase_string_map
Mapping of lowercase enumeration name to value.
Definition: FilterType.h:188
FilterType & operator=(const FilterType &rhs)
Assignment operator.
Definition: FilterType.h:129
Tuneable.
Definition: FilterType.h:89
EnumerationException is thrown when an enumeration is invalid or not found.
Definition: EnumerationException.h:74
MultiPass.
Definition: FilterType.h:85
LongPass.
Definition: FilterType.h:79
Dichroic.
Definition: FilterType.h:77
BandPass.
Definition: FilterType.h:83
NeutralDensity.
Definition: FilterType.h:87
static const string_map_type string_map
Mapping of enumeration name to value.
Definition: FilterType.h:186
Open Microscopy Environment C++ implementation.
Definition: CoreMetadata.cpp:40
static const value_map_type & values()
Get a map of valid enum values and string names.
Definition: FilterType.cpp:74
std::map< FilterType::enum_value, std::string > value_map_type
Value map type.
Definition: FilterType.h:161
bool operator==(const AcquisitionMode &lhs, const AcquisitionMode &rhs)
Compare two AcquisitionMode objects for equality.
Definition: AcquisitionMode.h:225
ShortPass.
Definition: FilterType.h:81
const std::string * name
Enumeration name.
Definition: FilterType.h:183
static const value_map_type value_map
Mapping of enumeration value to name.
Definition: FilterType.h:190
std::map< std::string, FilterType::enum_value > string_map_type
String map type.
Definition: FilterType.h:159
Other.
Definition: FilterType.h:91
enum_value value
Enumeration value.
Definition: FilterType.h:181
enum_value
Enumeration values.
Definition: FilterType.h:74
FilterType(enum_value value)
Construct a FilterType enumeration by an enumeration value.
Definition: FilterType.cpp:138
Boost.Log compatibility.
FilterType enumeration.
Definition: FilterType.h:70
Xerces-C modern C++ wrapper.
Definition: Base.h:53
static const string_map_type & strings()
Get a map of valid string names and enum values.
Definition: FilterType.cpp:68