Provides information about a specific time change, such as the change from daylight saving time to standard time or vice versa, in a particular time zone.
Defines a generalized method that a value type or class implements to create a type-specific method f...
Definition iequatable.h:22
Supports all classes in the xtd class hierarchy and provides low-level services to derived classes....
Definition object.h:42
Provides information about a specific time change, such as the change from daylight saving time to st...
Definition time_zone_info.h:66
- Inheritance
- xtd::object → xtd::time_zone_info::transition_time
- Implements
- xtd::iequatable <>
- Namespace
- xtd
- Library
- xtd.core
- Note
- An instance of the xtd::time_zone_info::transition_time structure is immutable. Once an object has been created, its values cannot be modified.
|
uint32 | day () const noexcept |
| Gets the day on which the time change occurs.
|
|
xtd::day_of_week | day_of_week () const noexcept |
| Gets the day of the week on which the time change occurs.
|
|
bool | is_fixed_rule () const noexcept |
| Gets a value indicating whether the time change occurs at a fixed date and time (such as November 1) or a floating date and time (such as the last Sunday of October).
|
|
uint32 | month () const noexcept |
| Gets the month in which the time change occurs.
|
|
xtd::date_time | time_of_day () const noexcept |
| Gets the hour, minute, and second at which the time change occurs.
|
|
uint32 | week () const noexcept |
| Gets the week of the month in which a time change occurs.
|
|
|
virtual bool | equals (const transition_time &) const noexcept=0 |
| Indicates whether the current object is equal to another object of the same type.
|
|
| object ()=default |
| Create a new instance of the ultimate base class object.
|
|
virtual size_t | get_hash_code () const noexcept |
| Serves as a hash function for a particular type.
|
|
virtual type_object | get_type () const noexcept |
| Gets the type of the current instance.
|
|
template<typename object_t > |
xtd::uptr< object_t > | memberwise_clone () const |
| Creates a shallow copy of the current object.
|
|
virtual xtd::string | to_string () const noexcept |
| Returns a xtd::string that represents the current object.
|
|
template<typename object_a_t , typename object_b_t > |
static bool | equals (const object_a_t &object_a, const object_b_t &object_b) noexcept |
| Determines whether the specified object instances are considered equal.
|
|
template<typename object_a_t , typename object_b_t > |
static bool | reference_equals (const object_a_t &object_a, const object_b_t &object_b) noexcept |
| Determines whether the specified object instances are the same instance.
|
|
◆ day()
uint32 xtd::time_zone_info::transition_time::day |
( |
| ) |
const |
|
noexcept |
Gets the day on which the time change occurs.
- Returns
- The day on which the time change occurs.
◆ day_of_week()
Gets the day of the week on which the time change occurs.
- Returns
- The day of the week on which the time change occurs.
◆ is_fixed_rule()
bool xtd::time_zone_info::transition_time::is_fixed_rule |
( |
| ) |
const |
|
noexcept |
Gets a value indicating whether the time change occurs at a fixed date and time (such as November 1) or a floating date and time (such as the last Sunday of October).
- Returns
- true if the time change rule is fixed-date; false if the time change rule is floating-date.
◆ month()
uint32 xtd::time_zone_info::transition_time::month |
( |
| ) |
const |
|
noexcept |
Gets the month in which the time change occurs.
- Returns
- The month in which the time change occurs.
◆ time_of_day()
xtd::date_time xtd::time_zone_info::transition_time::time_of_day |
( |
| ) |
const |
|
noexcept |
Gets the hour, minute, and second at which the time change occurs.
- Returns
- The time of day at which the time change occurs.
◆ week()
uint32 xtd::time_zone_info::transition_time::week |
( |
| ) |
const |
|
noexcept |
Gets the week of the month in which a time change occurs.
- Returns
- The week of the month in which the time change occurs.
◆ create_fixed_date_rule()
Defines a time change that uses a fixed-date rule (that is, a time change that occurs on a specific day of a specific month).
- Parameters
-
time_of_day | The time at which the time change occurs. This parameter corresponds to the xtd::time_zone_info::transition_time::ttime_of_day property. |
month | The month in which the time change occurs. This parameter corresponds to the xtd::time_zone_info::transition_time::month property. |
day | The day of the month on which the time change occurs. This parameter corresponds to the xtd::time_zone_info::transition_time::day property. |
- Returns
- Data about the time change.
- Exceptions
-
xtd::argument_exception | The time_of_day parameter has a non-default date component.
-or-
The time_of_day parameter's Kind property is not unspecified.
-or-
The time_of_day parameter does not represent a whole number of milliseconds. |
xtd::argument_out_of_range_exception | The month parameter is less than 1 or greater than 12.
-or-
The day parameter is less than 1 or greater than 31. |
◆ create_floating_date_rule()
Defines a time change that uses a floating-date rule (that is, a time change that occurs on a specific day of a specific week of a specific month).
- Parameters
-
- Returns
- Data about the time change.
- Exceptions
-
xtd::argument_exception | The time_of_day parameter has a non-default date component.
-or-
The time_of_day parameter's Kind property is not unspecified.
-or-
The time_of_day parameter does not represent a whole number of milliseconds. |
xtd::argument_out_of_range_exception | The month parameter is less than 1 or greater than 12.
-or-
The week parameter is less than 1 or greater than 5. |
◆ equals() [1/2]
virtual bool xtd::object::equals |
( |
const object & |
obj | ) |
const |
|
virtualnoexcept |
Determines whether the specified object is equal to the current object.
- Parameters
-
obj | The object to compare with the current object. |
- Returns
- true if the specified object is equal to the current object. otherwise, false.
- Examples
- The following code example compares the current instance with another object.
#include <xtd/console>
auto main() -> int {
auto object1 = new_ptr<object>();
auto object2 = new_ptr<object>();
auto object3 = object2;
object3 = object1;
}
static void write_line()
Writes the current line terminator to the standard output stream using the specified format informati...
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Reimplemented from xtd::object.
◆ equals() [2/2]
template<typename object_a_t , typename object_b_t >
static bool xtd::object::equals |
( |
const object_a_t & |
object_a, |
|
|
const object_b_t & |
object_b |
|
) |
| |
|
inlinestaticnoexcept |
Determines whether the specified object instances are considered equal.
- Parameters
-
object_a | The first object to compare. |
object_b | The second object to compare. |
- Returns
- true if object_a is the same instance as object_b or if both are null references or if object_a(object_b) returns true. otherwise, false.
- Examples
- The following code example compares different objects.
#include <xtd/console>
auto main() -> int {
string s1 = "Tom";
string s2 = "Carol";
s1 = "Tom";
s2 = "Tom";
s1 = "";
s2 = "Tom";
s1 = "Carol";
s2 = "";
s1 = "";
s2 = "";
}
virtual bool equals(const object &obj) const noexcept
Determines whether the specified object is equal to the current object.
The documentation for this class was generated from the following file: