ICU 76.1 76.1
|
This class represents a date interval. More...
#include <dtintrv.h>
Public Member Functions | |
DateInterval (UDate fromDate, UDate toDate) | |
Construct a DateInterval given a from date and a to date. | |
virtual | ~DateInterval () |
destructor | |
UDate | getFromDate () const |
Get the from date. | |
UDate | getToDate () const |
Get the to date. | |
virtual UClassID | getDynamicClassID () const override |
Returns a unique class ID POLYMORPHICALLY. | |
DateInterval (const DateInterval &other) | |
Copy constructor. | |
DateInterval & | operator= (const DateInterval &) |
Default assignment operator. | |
virtual bool | operator== (const DateInterval &other) const |
Equality operator. | |
bool | operator!= (const DateInterval &other) const |
Non-equality operator. | |
virtual DateInterval * | clone () const |
clone this object. | |
Public Member Functions inherited from icu::UObject | |
virtual | ~UObject () |
Destructor. | |
Static Public Member Functions | |
static UClassID | getStaticClassID () |
Return the class ID for this class. | |
This class represents a date interval.
It is a pair of UDate representing from UDate 1 to UDate 2.
Construct a DateInterval given a from date and a to date.
fromDate | The from date in date interval. |
toDate | The to date in date interval. |
icu::DateInterval::DateInterval | ( | const DateInterval & | other | ) |
Copy constructor.
|
virtual |
clone this object.
The caller owns the result and should delete it when done.
Returns a unique class ID POLYMORPHICALLY.
Pure virtual override. This method is to implement a simple version of RTTI, since not all C++ compilers support genuine RTTI. Polymorphic operator==() and clone() methods call this method.
Reimplemented from icu::UObject.
|
inline |
Return the class ID for this class.
This is useful only for comparing to a return value from getDynamicClassID(). For example:
. Base* polymorphic_pointer = createPolymorphicObject(); . if (polymorphic_pointer->getDynamicClassID() == . derived::getStaticClassID()) ...
|
inline |
|
inline |
DateInterval & icu::DateInterval::operator= | ( | const DateInterval & | ) |
Default assignment operator.
|
virtual |