ome-xml
5.6.0
|
Model primitive data types. More...
Classes | |
class | Color |
An RGBA color value. More... | |
class | ConstrainedNumeric |
A numeric type constrained to a subrange (or subranges) of its range limits. More... | |
struct | ConstrainedNumericError |
Default error handler for ConstrainedNumeric. More... | |
struct | key_index |
Type tag for ordered map key index. More... | |
struct | NonNegativeFloatConstraint |
Constraint for non-negative floating point values. More... | |
struct | NonNegativeIntegerConstraint |
Constraint for non-negative integer values. More... | |
struct | order_index |
Type tag for ordered map insertion order index. More... | |
struct | PercentFractionConstraint |
Constraint for fractional floating point values. More... | |
struct | PositiveFloatConstraint |
Constraint for strictly positive floating point values. More... | |
struct | PositiveIntegerConstraint |
Constraint for strictly positive integer values. More... | |
class | Quantity |
A quantity of a defined unit. More... | |
struct | QuantityConverter |
Convert a quantity to a different unit. More... | |
struct | QuantityConverter< ome::xml::model::enums::UnitsElectricPotential, Value > |
Convert a quantity to a different unit. More... | |
struct | QuantityConverter< ome::xml::model::enums::UnitsFrequency, Value > |
Convert a quantity to a different unit. More... | |
struct | QuantityConverter< ome::xml::model::enums::UnitsLength, Value > |
Convert a quantity to a different unit. More... | |
struct | QuantityConverter< ome::xml::model::enums::UnitsPower, Value > |
Convert a quantity to a different unit. More... | |
struct | QuantityConverter< ome::xml::model::enums::UnitsPressure, Value > |
Convert a quantity to a different unit. More... | |
struct | QuantityConverter< ome::xml::model::enums::UnitsTemperature, Value > |
Convert a quantity to a different unit. More... | |
struct | QuantityConverter< ome::xml::model::enums::UnitsTime, Value > |
Convert a quantity to a different unit. More... | |
class | Timestamp |
An ISO-8601 timestamp. More... | |
class | UnitsElectricPotential |
UnitsElectricPotential enumeration. More... | |
class | UnitsFrequency |
UnitsFrequency enumeration. More... | |
class | UnitsLength |
UnitsLength enumeration. More... | |
class | UnitsPower |
UnitsPower enumeration. More... | |
class | UnitsPressure |
UnitsPressure enumeration. More... | |
class | UnitsTemperature |
UnitsTemperature enumeration. More... | |
class | UnitsTime |
UnitsTime enumeration. More... | |
Typedefs | |
typedef ConstrainedNumeric< double, NonNegativeFloatConstraint< double > > | NonNegativeFloat |
Double-precision floating point value greater than or equal to zero. | |
typedef ConstrainedNumeric< int32_t, NonNegativeIntegerConstraint< int32_t > > | NonNegativeInteger |
Integer (signed 32-bit) value greater than or equal to zero. | |
typedef ConstrainedNumeric< int64_t, NonNegativeIntegerConstraint< int64_t > > | NonNegativeLong |
Long integer (signed 64-bit) value greater than or equal to zero. | |
typedef std::pair< std::string, std::string > | ordered_map_value |
Value type for ordered map (string key, string value). | |
typedef boost::multi_index_container< ordered_map_value, boost::multi_index::indexed_by< boost::multi_index::random_access< boost::multi_index::tag< order_index > >, boost::multi_index::hashed_non_unique< boost::multi_index::tag< key_index >, boost::multi_index::member< ordered_map_value, std::string, &ordered_map_value::first > > > > | OrderedMultimap |
Map preserving insertion order. | |
typedef ConstrainedNumeric< float, PercentFractionConstraint< float > > | PercentFraction |
Double-precision floating point value between 0.0 minimum and 1.0 maximum. | |
typedef ConstrainedNumeric< double, PositiveFloatConstraint< double > > | PositiveFloat |
Double-precision floating point value greater than zero. More... | |
typedef ConstrainedNumeric< int32_t, PositiveIntegerConstraint< int32_t > > | PositiveInteger |
Integer (signed 32-bit) value greater than zero. More... | |
typedef ConstrainedNumeric< int64_t, PositiveIntegerConstraint< int64_t > > | PositiveLong |
Long integer (signed 64-bit) value greater than zero. More... | |
Functions | |
bool | operator== (const Color &lhs, const Color &rhs) |
Compare two Color objects for equality. More... | |
bool | operator== (const Color &lhs, Color::composed_type rhs) |
Compare a Color object with a composed color value for equality. More... | |
bool | operator== (Color::composed_type lhs, const Color &rhs) |
Compare a composed color value with a Color object for equality. More... | |
bool | operator== (const Color &lhs, Color::signed_type rhs) |
Compare a Color object with a signed composed color value for equality. More... | |
bool | operator== (Color::signed_type lhs, const Color &rhs) |
Compare a signed composed color value with a Color object for equality. More... | |
bool | operator!= (const Color &lhs, const Color &rhs) |
Compare two Color objects for non-equality. More... | |
bool | operator!= (const Color &lhs, Color::composed_type rhs) |
Compare a Color object with a composed color value for non-equality. More... | |
bool | operator!= (Color::composed_type lhs, const Color &rhs) |
Compare a composed color value with a Color object for non-equality. More... | |
bool | operator!= (const Color &lhs, Color::signed_type rhs) |
Compare a Color object with a signed composed color value for non-equality. More... | |
bool | operator!= (Color::signed_type lhs, const Color &rhs) |
Compare a signed composed color value with a Color object for non-equality. More... | |
template<class charT , class traits > | |
std::basic_ostream< charT, traits > & | operator<< (std::basic_ostream< charT, traits > &os, const Color &color) |
Output Color to output stream. More... | |
template<class charT , class traits > | |
std::basic_istream< charT, traits > & | operator>> (std::basic_istream< charT, traits > &is, Color &color) |
Set Color from input stream. More... | |
template<class charT , class traits , typename N , typename C , typename E > | |
std::basic_istream< charT, traits > & | operator>> (std::basic_istream< charT, traits > &is, ConstrainedNumeric< N, C, E > &value) |
Set constrained value from input stream. More... | |
template<class charT , class traits , typename N , typename C , typename E > | |
std::basic_ostream< charT, traits > & | operator<< (std::basic_ostream< charT, traits > &os, const ConstrainedNumeric< N, C, E > &value) |
Output constrained value to output stream. More... | |
template<class Unit , typename Value > | |
Quantity< Unit, Value > | convert (const Quantity< Unit, Value > &quantity, typename Quantity< Unit, Value >::unit_type unit) |
Convert quantity to another unit. More... | |
template<class charT , class traits , typename Unit , typename Value > | |
std::basic_ostream< charT, traits > & | operator<< (std::basic_ostream< charT, traits > &os, const Quantity< Unit, Value > &quantity) |
Output Quantity to output stream. More... | |
template<class charT , class traits , typename Unit , typename Value > | |
std::basic_istream< charT, traits > & | operator>> (std::basic_istream< charT, traits > &is, Quantity< Unit, Value > &quantity) |
Set Quantity from input stream. More... | |
template<class charT , class traits > | |
std::basic_ostream< charT, traits > & | operator<< (std::basic_ostream< charT, traits > &os, const Timestamp ×tamp) |
Output Timestamp to output stream. More... | |
template<class charT , class traits > | |
std::basic_istream< charT, traits > & | operator>> (std::basic_istream< charT, traits > &is, Timestamp ×tamp) |
Set Timestamp from input stream. More... | |
bool | operator== (const UnitsElectricPotential &lhs, const UnitsElectricPotential &rhs) |
Compare two UnitsElectricPotential objects for equality. More... | |
bool | operator== (const UnitsElectricPotential &lhs, const UnitsElectricPotential::enum_value &rhs) |
Compare UnitsElectricPotential object and enum value for equality. More... | |
bool | operator== (const UnitsElectricPotential::enum_value &lhs, const UnitsElectricPotential &rhs) |
Compare enum value and UnitsElectricPotential for equality. More... | |
bool | operator== (const UnitsElectricPotential &lhs, const std::string &rhs) |
Compare UnitsElectricPotential object and enum string value for equality. More... | |
bool | operator== (const std::string &lhs, const UnitsElectricPotential &rhs) |
Compare enum string value and UnitsElectricPotential object for equality. More... | |
bool | operator!= (const UnitsElectricPotential &lhs, const UnitsElectricPotential &rhs) |
Compare two UnitsElectricPotential objects for non-equality. More... | |
bool | operator!= (const UnitsElectricPotential &lhs, const UnitsElectricPotential::enum_value &rhs) |
Compare UnitsElectricPotential object and enum value for non-equality. More... | |
bool | operator!= (const UnitsElectricPotential::enum_value &lhs, const UnitsElectricPotential &rhs) |
Compare enum value and UnitsElectricPotential object for non-equality. More... | |
bool | operator!= (const UnitsElectricPotential &lhs, const std::string &rhs) |
Compare UnitsElectricPotential object and enum string value for non-equality. More... | |
bool | operator!= (const std::string &lhs, const UnitsElectricPotential &rhs) |
Compare enum string value and UnitsElectricPotential object for non-equality. More... | |
template<class charT , class traits > | |
std::basic_ostream< charT, traits > & | operator<< (std::basic_ostream< charT, traits > &os, const UnitsElectricPotential &enumeration) |
Output UnitsElectricPotential to output stream. More... | |
template<class charT , class traits > | |
std::basic_istream< charT, traits > & | operator>> (std::basic_istream< charT, traits > &is, UnitsElectricPotential &enumeration) |
Set UnitsElectricPotential from input stream. More... | |
bool | operator== (const UnitsFrequency &lhs, const UnitsFrequency &rhs) |
Compare two UnitsFrequency objects for equality. More... | |
bool | operator== (const UnitsFrequency &lhs, const UnitsFrequency::enum_value &rhs) |
Compare UnitsFrequency object and enum value for equality. More... | |
bool | operator== (const UnitsFrequency::enum_value &lhs, const UnitsFrequency &rhs) |
Compare enum value and UnitsFrequency for equality. More... | |
bool | operator== (const UnitsFrequency &lhs, const std::string &rhs) |
Compare UnitsFrequency object and enum string value for equality. More... | |
bool | operator== (const std::string &lhs, const UnitsFrequency &rhs) |
Compare enum string value and UnitsFrequency object for equality. More... | |
bool | operator!= (const UnitsFrequency &lhs, const UnitsFrequency &rhs) |
Compare two UnitsFrequency objects for non-equality. More... | |
bool | operator!= (const UnitsFrequency &lhs, const UnitsFrequency::enum_value &rhs) |
Compare UnitsFrequency object and enum value for non-equality. More... | |
bool | operator!= (const UnitsFrequency::enum_value &lhs, const UnitsFrequency &rhs) |
Compare enum value and UnitsFrequency object for non-equality. More... | |
bool | operator!= (const UnitsFrequency &lhs, const std::string &rhs) |
Compare UnitsFrequency object and enum string value for non-equality. More... | |
bool | operator!= (const std::string &lhs, const UnitsFrequency &rhs) |
Compare enum string value and UnitsFrequency object for non-equality. More... | |
template<class charT , class traits > | |
std::basic_ostream< charT, traits > & | operator<< (std::basic_ostream< charT, traits > &os, const UnitsFrequency &enumeration) |
Output UnitsFrequency to output stream. More... | |
template<class charT , class traits > | |
std::basic_istream< charT, traits > & | operator>> (std::basic_istream< charT, traits > &is, UnitsFrequency &enumeration) |
Set UnitsFrequency from input stream. More... | |
bool | operator== (const UnitsLength &lhs, const UnitsLength &rhs) |
Compare two UnitsLength objects for equality. More... | |
bool | operator== (const UnitsLength &lhs, const UnitsLength::enum_value &rhs) |
Compare UnitsLength object and enum value for equality. More... | |
bool | operator== (const UnitsLength::enum_value &lhs, const UnitsLength &rhs) |
Compare enum value and UnitsLength for equality. More... | |
bool | operator== (const UnitsLength &lhs, const std::string &rhs) |
Compare UnitsLength object and enum string value for equality. More... | |
bool | operator== (const std::string &lhs, const UnitsLength &rhs) |
Compare enum string value and UnitsLength object for equality. More... | |
bool | operator!= (const UnitsLength &lhs, const UnitsLength &rhs) |
Compare two UnitsLength objects for non-equality. More... | |
bool | operator!= (const UnitsLength &lhs, const UnitsLength::enum_value &rhs) |
Compare UnitsLength object and enum value for non-equality. More... | |
bool | operator!= (const UnitsLength::enum_value &lhs, const UnitsLength &rhs) |
Compare enum value and UnitsLength object for non-equality. More... | |
bool | operator!= (const UnitsLength &lhs, const std::string &rhs) |
Compare UnitsLength object and enum string value for non-equality. More... | |
bool | operator!= (const std::string &lhs, const UnitsLength &rhs) |
Compare enum string value and UnitsLength object for non-equality. More... | |
template<class charT , class traits > | |
std::basic_ostream< charT, traits > & | operator<< (std::basic_ostream< charT, traits > &os, const UnitsLength &enumeration) |
Output UnitsLength to output stream. More... | |
template<class charT , class traits > | |
std::basic_istream< charT, traits > & | operator>> (std::basic_istream< charT, traits > &is, UnitsLength &enumeration) |
Set UnitsLength from input stream. More... | |
bool | operator== (const UnitsPower &lhs, const UnitsPower &rhs) |
Compare two UnitsPower objects for equality. More... | |
bool | operator== (const UnitsPower &lhs, const UnitsPower::enum_value &rhs) |
Compare UnitsPower object and enum value for equality. More... | |
bool | operator== (const UnitsPower::enum_value &lhs, const UnitsPower &rhs) |
Compare enum value and UnitsPower for equality. More... | |
bool | operator== (const UnitsPower &lhs, const std::string &rhs) |
Compare UnitsPower object and enum string value for equality. More... | |
bool | operator== (const std::string &lhs, const UnitsPower &rhs) |
Compare enum string value and UnitsPower object for equality. More... | |
bool | operator!= (const UnitsPower &lhs, const UnitsPower &rhs) |
Compare two UnitsPower objects for non-equality. More... | |
bool | operator!= (const UnitsPower &lhs, const UnitsPower::enum_value &rhs) |
Compare UnitsPower object and enum value for non-equality. More... | |
bool | operator!= (const UnitsPower::enum_value &lhs, const UnitsPower &rhs) |
Compare enum value and UnitsPower object for non-equality. More... | |
bool | operator!= (const UnitsPower &lhs, const std::string &rhs) |
Compare UnitsPower object and enum string value for non-equality. More... | |
bool | operator!= (const std::string &lhs, const UnitsPower &rhs) |
Compare enum string value and UnitsPower object for non-equality. More... | |
template<class charT , class traits > | |
std::basic_ostream< charT, traits > & | operator<< (std::basic_ostream< charT, traits > &os, const UnitsPower &enumeration) |
Output UnitsPower to output stream. More... | |
template<class charT , class traits > | |
std::basic_istream< charT, traits > & | operator>> (std::basic_istream< charT, traits > &is, UnitsPower &enumeration) |
Set UnitsPower from input stream. More... | |
bool | operator== (const UnitsPressure &lhs, const UnitsPressure &rhs) |
Compare two UnitsPressure objects for equality. More... | |
bool | operator== (const UnitsPressure &lhs, const UnitsPressure::enum_value &rhs) |
Compare UnitsPressure object and enum value for equality. More... | |
bool | operator== (const UnitsPressure::enum_value &lhs, const UnitsPressure &rhs) |
Compare enum value and UnitsPressure for equality. More... | |
bool | operator== (const UnitsPressure &lhs, const std::string &rhs) |
Compare UnitsPressure object and enum string value for equality. More... | |
bool | operator== (const std::string &lhs, const UnitsPressure &rhs) |
Compare enum string value and UnitsPressure object for equality. More... | |
bool | operator!= (const UnitsPressure &lhs, const UnitsPressure &rhs) |
Compare two UnitsPressure objects for non-equality. More... | |
bool | operator!= (const UnitsPressure &lhs, const UnitsPressure::enum_value &rhs) |
Compare UnitsPressure object and enum value for non-equality. More... | |
bool | operator!= (const UnitsPressure::enum_value &lhs, const UnitsPressure &rhs) |
Compare enum value and UnitsPressure object for non-equality. More... | |
bool | operator!= (const UnitsPressure &lhs, const std::string &rhs) |
Compare UnitsPressure object and enum string value for non-equality. More... | |
bool | operator!= (const std::string &lhs, const UnitsPressure &rhs) |
Compare enum string value and UnitsPressure object for non-equality. More... | |
template<class charT , class traits > | |
std::basic_ostream< charT, traits > & | operator<< (std::basic_ostream< charT, traits > &os, const UnitsPressure &enumeration) |
Output UnitsPressure to output stream. More... | |
template<class charT , class traits > | |
std::basic_istream< charT, traits > & | operator>> (std::basic_istream< charT, traits > &is, UnitsPressure &enumeration) |
Set UnitsPressure from input stream. More... | |
bool | operator== (const UnitsTemperature &lhs, const UnitsTemperature &rhs) |
Compare two UnitsTemperature objects for equality. More... | |
bool | operator== (const UnitsTemperature &lhs, const UnitsTemperature::enum_value &rhs) |
Compare UnitsTemperature object and enum value for equality. More... | |
bool | operator== (const UnitsTemperature::enum_value &lhs, const UnitsTemperature &rhs) |
Compare enum value and UnitsTemperature for equality. More... | |
bool | operator== (const UnitsTemperature &lhs, const std::string &rhs) |
Compare UnitsTemperature object and enum string value for equality. More... | |
bool | operator== (const std::string &lhs, const UnitsTemperature &rhs) |
Compare enum string value and UnitsTemperature object for equality. More... | |
bool | operator!= (const UnitsTemperature &lhs, const UnitsTemperature &rhs) |
Compare two UnitsTemperature objects for non-equality. More... | |
bool | operator!= (const UnitsTemperature &lhs, const UnitsTemperature::enum_value &rhs) |
Compare UnitsTemperature object and enum value for non-equality. More... | |
bool | operator!= (const UnitsTemperature::enum_value &lhs, const UnitsTemperature &rhs) |
Compare enum value and UnitsTemperature object for non-equality. More... | |
bool | operator!= (const UnitsTemperature &lhs, const std::string &rhs) |
Compare UnitsTemperature object and enum string value for non-equality. More... | |
bool | operator!= (const std::string &lhs, const UnitsTemperature &rhs) |
Compare enum string value and UnitsTemperature object for non-equality. More... | |
template<class charT , class traits > | |
std::basic_ostream< charT, traits > & | operator<< (std::basic_ostream< charT, traits > &os, const UnitsTemperature &enumeration) |
Output UnitsTemperature to output stream. More... | |
template<class charT , class traits > | |
std::basic_istream< charT, traits > & | operator>> (std::basic_istream< charT, traits > &is, UnitsTemperature &enumeration) |
Set UnitsTemperature from input stream. More... | |
bool | operator== (const UnitsTime &lhs, const UnitsTime &rhs) |
Compare two UnitsTime objects for equality. More... | |
bool | operator== (const UnitsTime &lhs, const UnitsTime::enum_value &rhs) |
Compare UnitsTime object and enum value for equality. More... | |
bool | operator== (const UnitsTime::enum_value &lhs, const UnitsTime &rhs) |
Compare enum value and UnitsTime for equality. More... | |
bool | operator== (const UnitsTime &lhs, const std::string &rhs) |
Compare UnitsTime object and enum string value for equality. More... | |
bool | operator== (const std::string &lhs, const UnitsTime &rhs) |
Compare enum string value and UnitsTime object for equality. More... | |
bool | operator!= (const UnitsTime &lhs, const UnitsTime &rhs) |
Compare two UnitsTime objects for non-equality. More... | |
bool | operator!= (const UnitsTime &lhs, const UnitsTime::enum_value &rhs) |
Compare UnitsTime object and enum value for non-equality. More... | |
bool | operator!= (const UnitsTime::enum_value &lhs, const UnitsTime &rhs) |
Compare enum value and UnitsTime object for non-equality. More... | |
bool | operator!= (const UnitsTime &lhs, const std::string &rhs) |
Compare UnitsTime object and enum string value for non-equality. More... | |
bool | operator!= (const std::string &lhs, const UnitsTime &rhs) |
Compare enum string value and UnitsTime object for non-equality. More... | |
template<class charT , class traits > | |
std::basic_ostream< charT, traits > & | operator<< (std::basic_ostream< charT, traits > &os, const UnitsTime &enumeration) |
Output UnitsTime to output stream. More... | |
template<class charT , class traits > | |
std::basic_istream< charT, traits > & | operator>> (std::basic_istream< charT, traits > &is, UnitsTime &enumeration) |
Set UnitsTime from input stream. More... | |
Model primitive data types.
Model primitives.
All the classes in this namespace are fundamental data types used by the OME model objects, but are not themselves model objects. They map to types defined in the OME-XML schema.
typedef ConstrainedNumeric<double, PositiveFloatConstraint<double> > ome::xml::model::primitives::PositiveFloat |
Double-precision floating point value greater than zero.
This value does not include zero.
typedef ConstrainedNumeric<int32_t, PositiveIntegerConstraint<int32_t> > ome::xml::model::primitives::PositiveInteger |
Integer (signed 32-bit) value greater than zero.
This value does not include zero.
typedef ConstrainedNumeric<int64_t, PositiveIntegerConstraint<int64_t> > ome::xml::model::primitives::PositiveLong |
Long integer (signed 64-bit) value greater than zero.
This value does not include zero.
|
inline |
Convert quantity to another unit.
quantity | the quantity to convert. |
unit | the unit to which to convert the quantity. |
std::logic | error if the unit systems are incompatible making conversion impossible. |
Referenced by ome::xml::model::primitives::Quantity< Unit, Value >::operator+=(), ome::xml::model::primitives::Quantity< Unit, Value >::operator-=(), ome::xml::model::primitives::Quantity< Unit, Value >::operator<(), and ome::xml::model::primitives::Quantity< Unit, Value >::operator==().
|
inline |
Compare two UnitsTemperature objects for non-equality.
lhs | a UnitsTemperature object. |
rhs | a UnitsTemperature object. |
|
inline |
Compare UnitsTemperature object and enum value for non-equality.
lhs | a UnitsTemperature object. |
rhs | a UnitsTemperature enum value. |
|
inline |
Compare enum value and UnitsTemperature object for non-equality.
lhs | a UnitsTemperature enum value. |
rhs | a UnitsTemperature object. |
|
inline |
Compare two UnitsFrequency objects for non-equality.
lhs | a UnitsFrequency object. |
rhs | a UnitsFrequency object. |
|
inline |
Compare two UnitsElectricPotential objects for non-equality.
lhs | a UnitsElectricPotential object. |
rhs | a UnitsElectricPotential object. |
|
inline |
Compare two UnitsPower objects for non-equality.
lhs | a UnitsPower object. |
rhs | a UnitsPower object. |
|
inline |
Compare UnitsTemperature object and enum string value for non-equality.
lhs | a UnitsTemperature object. |
rhs | a UnitsTemperature enum string value. |
|
inline |
Compare UnitsFrequency object and enum value for non-equality.
lhs | a UnitsFrequency object. |
rhs | a UnitsFrequency enum value. |
|
inline |
Compare UnitsElectricPotential object and enum value for non-equality.
lhs | a UnitsElectricPotential object. |
rhs | a UnitsElectricPotential enum value. |
|
inline |
Compare UnitsPower object and enum value for non-equality.
lhs | a UnitsPower object. |
rhs | a UnitsPower enum value. |
|
inline |
|
inline |
Compare two UnitsPressure objects for non-equality.
lhs | a UnitsPressure object. |
rhs | a UnitsPressure object. |
|
inline |
Compare enum string value and UnitsTemperature object for non-equality.
lhs | a UnitsTemperature enum string value. |
rhs | a UnitsTemperature object. |
|
inline |
Compare two UnitsLength objects for non-equality.
lhs | a UnitsLength object. |
rhs | a UnitsLength object. |
|
inline |
Compare enum value and UnitsFrequency object for non-equality.
lhs | a UnitsFrequency enum value. |
rhs | a UnitsFrequency object. |
|
inline |
Compare enum value and UnitsElectricPotential object for non-equality.
lhs | a UnitsElectricPotential enum value. |
rhs | a UnitsElectricPotential object. |
|
inline |
Compare enum value and UnitsPower object for non-equality.
lhs | a UnitsPower enum value. |
rhs | a UnitsPower object. |
|
inline |
|
inline |
Compare UnitsPressure object and enum value for non-equality.
lhs | a UnitsPressure object. |
rhs | a UnitsPressure enum value. |
|
inline |
Compare UnitsLength object and enum value for non-equality.
lhs | a UnitsLength object. |
rhs | a UnitsLength enum value. |
|
inline |
Compare UnitsPower object and enum string value for non-equality.
lhs | a UnitsPower object. |
rhs | a UnitsPower enum string value. |
|
inline |
Compare UnitsFrequency object and enum string value for non-equality.
lhs | a UnitsFrequency object. |
rhs | a UnitsFrequency enum string value. |
|
inline |
Compare UnitsElectricPotential object and enum string value for non-equality.
lhs | a UnitsElectricPotential object. |
rhs | a UnitsElectricPotential enum string value. |
|
inline |
|
inline |
Compare enum value and UnitsPressure object for non-equality.
lhs | a UnitsPressure enum value. |
rhs | a UnitsPressure object. |
|
inline |
Compare enum value and UnitsLength object for non-equality.
lhs | a UnitsLength enum value. |
rhs | a UnitsLength object. |
|
inline |
Compare enum string value and UnitsPower object for non-equality.
lhs | a UnitsPower enum string value. |
rhs | a UnitsPower object. |
|
inline |
Compare enum string value and UnitsFrequency object for non-equality.
lhs | a UnitsFrequency enum string value. |
rhs | a UnitsFrequency object. |
|
inline |
Compare enum string value and UnitsElectricPotential object for non-equality.
lhs | a UnitsElectricPotential enum string value. |
rhs | a UnitsElectricPotential object. |
|
inline |
|
inline |
Compare UnitsPressure object and enum string value for non-equality.
lhs | a UnitsPressure object. |
rhs | a UnitsPressure enum string value. |
|
inline |
Compare UnitsLength object and enum string value for non-equality.
lhs | a UnitsLength object. |
rhs | a UnitsLength enum string value. |
|
inline |
Compare enum string value and UnitsPressure object for non-equality.
lhs | a UnitsPressure enum string value. |
rhs | a UnitsPressure object. |
|
inline |
Compare enum string value and UnitsLength object for non-equality.
lhs | a UnitsLength enum string value. |
rhs | a UnitsLength object. |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Output Timestamp to output stream.
os | the output stream. |
timestamp | the timestamp to output. |
|
inline |
Output UnitsTemperature to output stream.
os | the output stream. |
enumeration | the UnitsTemperature to output. |
|
inline |
Output Quantity to output stream.
os | the output stream. |
quantity | the Quantity to output. |
References ome::xml::model::primitives::Quantity< Unit, Value >::getValue().
|
inline |
Output UnitsPower to output stream.
os | the output stream. |
enumeration | the UnitsPower to output. |
|
inline |
Output UnitsFrequency to output stream.
os | the output stream. |
enumeration | the UnitsFrequency to output. |
|
inline |
Output UnitsElectricPotential to output stream.
os | the output stream. |
enumeration | the UnitsElectricPotential to output. |
|
inline |
|
inline |
Output UnitsPressure to output stream.
os | the output stream. |
enumeration | the UnitsPressure to output. |
|
inline |
Output UnitsLength to output stream.
os | the output stream. |
enumeration | the UnitsLength to output. |
|
inline |
|
inline |
Output constrained value to output stream.
os | the output stream. |
value | the value to output. |
|
inline |
Compare two UnitsTemperature objects for equality.
lhs | a UnitsTemperature object. |
rhs | a UnitsTemperature object. |
|
inline |
Compare UnitsTemperature object and enum value for equality.
lhs | a UnitsTemperature object. |
rhs | a UnitsTemperature enum value. |
|
inline |
Compare enum value and UnitsTemperature for equality.
lhs | a UnitsTemperature enum value. |
rhs | a UnitsTemperature object. |
|
inline |
Compare two UnitsFrequency objects for equality.
lhs | a UnitsFrequency object. |
rhs | a UnitsFrequency object. |
|
inline |
Compare two UnitsElectricPotential objects for equality.
lhs | a UnitsElectricPotential object. |
rhs | a UnitsElectricPotential object. |
|
inline |
Compare two UnitsPower objects for equality.
lhs | a UnitsPower object. |
rhs | a UnitsPower object. |
|
inline |
Compare UnitsTemperature object and enum string value for equality.
lhs | a UnitsTemperature object. |
rhs | a UnitsTemperature enum string value. |
|
inline |
Compare UnitsFrequency object and enum value for equality.
lhs | a UnitsFrequency object. |
rhs | a UnitsFrequency enum value. |
|
inline |
Compare UnitsElectricPotential object and enum value for equality.
lhs | a UnitsElectricPotential object. |
rhs | a UnitsElectricPotential enum value. |
|
inline |
Compare UnitsPower object and enum value for equality.
lhs | a UnitsPower object. |
rhs | a UnitsPower enum value. |
|
inline |
|
inline |
Compare enum string value and UnitsTemperature object for equality.
lhs | a UnitsTemperature enum string value. |
rhs | a UnitsTemperature object. |
|
inline |
Compare two UnitsPressure objects for equality.
lhs | a UnitsPressure object. |
rhs | a UnitsPressure object. |
|
inline |
Compare two UnitsLength objects for equality.
lhs | a UnitsLength object. |
rhs | a UnitsLength object. |
|
inline |
Compare enum value and UnitsFrequency for equality.
lhs | a UnitsFrequency enum value. |
rhs | a UnitsFrequency object. |
|
inline |
Compare enum value and UnitsElectricPotential for equality.
lhs | a UnitsElectricPotential enum value. |
rhs | a UnitsElectricPotential object. |
|
inline |
Compare enum value and UnitsPower for equality.
lhs | a UnitsPower enum value. |
rhs | a UnitsPower object. |
|
inline |
|
inline |
Compare UnitsPressure object and enum value for equality.
lhs | a UnitsPressure object. |
rhs | a UnitsPressure enum value. |
|
inline |
Compare UnitsLength object and enum value for equality.
lhs | a UnitsLength object. |
rhs | a UnitsLength enum value. |
|
inline |
Compare UnitsPower object and enum string value for equality.
lhs | a UnitsPower object. |
rhs | a UnitsPower enum string value. |
|
inline |
Compare UnitsFrequency object and enum string value for equality.
lhs | a UnitsFrequency object. |
rhs | a UnitsFrequency enum string value. |
|
inline |
Compare UnitsElectricPotential object and enum string value for equality.
lhs | a UnitsElectricPotential object. |
rhs | a UnitsElectricPotential enum string value. |
|
inline |
|
inline |
Compare enum value and UnitsPressure for equality.
lhs | a UnitsPressure enum value. |
rhs | a UnitsPressure object. |
|
inline |
Compare enum value and UnitsLength for equality.
lhs | a UnitsLength enum value. |
rhs | a UnitsLength object. |
|
inline |
Compare enum string value and UnitsElectricPotential object for equality.
lhs | a UnitsElectricPotential enum string value. |
rhs | a UnitsElectricPotential object. |
|
inline |
Compare enum string value and UnitsFrequency object for equality.
lhs | a UnitsFrequency enum string value. |
rhs | a UnitsFrequency object. |
|
inline |
Compare enum string value and UnitsPower object for equality.
lhs | a UnitsPower enum string value. |
rhs | a UnitsPower object. |
|
inline |
|
inline |
Compare UnitsPressure object and enum string value for equality.
lhs | a UnitsPressure object. |
rhs | a UnitsPressure enum string value. |
|
inline |
Compare UnitsLength object and enum string value for equality.
lhs | a UnitsLength object. |
rhs | a UnitsLength enum string value. |
|
inline |
Compare enum string value and UnitsPressure object for equality.
lhs | a UnitsPressure enum string value. |
rhs | a UnitsPressure object. |
|
inline |
Compare enum string value and UnitsLength object for equality.
lhs | a UnitsLength enum string value. |
rhs | a UnitsLength object. |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Set Timestamp from input stream.
is | the input stream. |
timestamp | the Timestamp to set. |
References ome::xml::model::primitives::Timestamp::Timestamp(), and ome::xml::model::primitives::Timestamp::value.
|
inline |
Set UnitsTemperature from input stream.
is | the input stream. |
enumeration | the UnitsTemperature to input. |
References ome::xml::model::primitives::UnitsTemperature::UnitsTemperature(), and ome::xml::model::primitives::UnitsTemperature::value.
|
inline |
|
inline |
Set UnitsElectricPotential from input stream.
is | the input stream. |
enumeration | the UnitsElectricPotential to input. |
References ome::xml::model::primitives::UnitsElectricPotential::UnitsElectricPotential(), and ome::xml::model::primitives::UnitsElectricPotential::value.
|
inline |
Set UnitsFrequency from input stream.
is | the input stream. |
enumeration | the UnitsFrequency to input. |
References ome::xml::model::primitives::UnitsFrequency::UnitsFrequency(), and ome::xml::model::primitives::UnitsFrequency::value.
|
inline |
Set UnitsPower from input stream.
is | the input stream. |
enumeration | the UnitsPower to input. |
References ome::xml::model::primitives::UnitsPower::UnitsPower(), and ome::xml::model::primitives::UnitsPower::value.
|
inline |
Set UnitsTime from input stream.
is | the input stream. |
enumeration | the UnitsTime to input. |
References ome::xml::model::primitives::UnitsTime::UnitsTime(), and ome::xml::model::primitives::UnitsTime::value.
|
inline |
Set UnitsPressure from input stream.
is | the input stream. |
enumeration | the UnitsPressure to input. |
References ome::xml::model::primitives::UnitsPressure::UnitsPressure(), and ome::xml::model::primitives::UnitsPressure::value.
|
inline |
Set UnitsLength from input stream.
is | the input stream. |
enumeration | the UnitsLength to input. |
References ome::xml::model::primitives::UnitsLength::UnitsLength(), and ome::xml::model::primitives::UnitsLength::value.
|
inline |
Set Color from input stream.
is | the input stream. |
color | the Color to set. |
References ome::xml::model::primitives::Color::setValue().
|
inline |
Set constrained value from input stream.
is | the input stream. |
value | the value to set. |