ICU 77.1  77.1
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
tmutamt.h
Go to the documentation of this file.
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4  *******************************************************************************
5  * Copyright (C) 2009-2010, Google, International Business Machines Corporation and *
6  * others. All Rights Reserved. *
7  *******************************************************************************
8  */
9 
10 #ifndef __TMUTAMT_H__
11 #define __TMUTAMT_H__
12 
13 
19 #include "unicode/utypes.h"
20 
21 #if U_SHOW_CPLUSPLUS_API
22 
23 #if !UCONFIG_NO_FORMATTING
24 
25 #include "unicode/measure.h"
26 #include "unicode/tmunit.h"
27 
28 U_NAMESPACE_BEGIN
29 
30 
38 public:
51  TimeUnitAmount(const Formattable& number,
52  TimeUnit::UTimeUnitFields timeUnitField,
53  UErrorCode& status);
54 
67  TimeUnitAmount(double amount, TimeUnit::UTimeUnitFields timeUnitField,
68  UErrorCode& status);
69 
70 
76 
77 
83 
84 
90  virtual TimeUnitAmount* clone() const override;
91 
92 
97  virtual ~TimeUnitAmount();
98 
99 
106  virtual bool operator==(const UObject& other) const;
107 
108 
115  bool operator!=(const UObject& other) const;
116 
117 
129  static UClassID U_EXPORT2 getStaticClassID();
130 
142  virtual UClassID getDynamicClassID() const override;
143 
149  const TimeUnit& getTimeUnit() const;
150 
157 };
158 
159 
160 
161 inline bool
162 TimeUnitAmount::operator!=(const UObject& other) const {
163  return !operator==(other);
164 }
165 
166 U_NAMESPACE_END
167 
168 #endif /* #if !UCONFIG_NO_FORMATTING */
169 
170 #endif /* U_SHOW_CPLUSPLUS_API */
171 
172 #endif // __TMUTAMT_H__
173 //eof
174 //
Formattable objects can be passed to the Format class or its subclasses for formatting.
Definition: fmtable.h:63
An amount of a specified unit, consisting of a number and a Unit.
Definition: measure.h:45
bool operator!=(const UObject &other) const
Inequality operator.
Definition: measure.h:98
Express a duration as a time unit and number.
Definition: tmutamt.h:37
static UClassID getStaticClassID()
Return the class ID for this class.
TimeUnitAmount(double amount, TimeUnit::UTimeUnitFields timeUnitField, UErrorCode &status)
Construct TimeUnitAmount object with the given numeric amount and the given time unit.
virtual bool operator==(const UObject &other) const
Equality operator.
TimeUnit::UTimeUnitFields getTimeUnitField() const
Get the time unit field value.
TimeUnitAmount(const TimeUnitAmount &other)
Copy constructor.
TimeUnitAmount(const Formattable &number, TimeUnit::UTimeUnitFields timeUnitField, UErrorCode &status)
Construct TimeUnitAmount object with the given number and the given time unit.
const TimeUnit & getTimeUnit() const
Get the time unit.
virtual UClassID getDynamicClassID() const override
Returns a unique class ID POLYMORPHICALLY.
virtual ~TimeUnitAmount()
Destructor.
TimeUnitAmount & operator=(const TimeUnitAmount &other)
Assignment operator.
virtual TimeUnitAmount * clone() const override
Clone.
Measurement unit for time units.
Definition: tmunit.h:35
UTimeUnitFields
Constants for all the time units we supported.
Definition: tmunit.h:41
UObject is the common ICU "boilerplate" class.
Definition: uobject.h:223
C++ API: MeasureUnit object.
U_EXPORT UBool operator==(const StringPiece &x, const StringPiece &y)
Global operator == for StringPiece.
bool operator!=(const StringPiece &x, const StringPiece &y)
Global operator != for StringPiece.
Definition: stringpiece.h:346
C++ API: time unit object.
void * UClassID
UClassID is used to identify classes without using the compiler's RTTI.
Definition: uobject.h:96
Basic definitions for ICU, for both C and C++ APIs.
UErrorCode
Standard ICU4C error code type, a substitute for exceptions.
Definition: utypes.h:430
#define U_I18N_API
Set to export library symbols from inside the i18n library, and to import them from outside.
Definition: utypes.h:316