A Zone
represents a time zone offset in effect in a specific Location
.
Some zones have a #name
or abbreviation (such as PDT
, CEST
). For an unnamed zone the formatted offset should be used as name.
new("UTC", 0, false)
This is the UTC
time zone with offset +00:00
.
It is the only zone offset used in Time::Location::UTC
.
Creates a new Zone
named name with offset from UTC in seconds.
Returns true
if this zone offset is daylight savings time.
Prints #offset
to io in the format +HH:mm:ss
.
Returns the #offset
formatted as +HH:mm:ss
.
Prints this Zone
to io.
Returns the name of the zone.
Returns the offset from UTC in seconds.
Struct
Value
Object
Object
Creates a new Zone
named name with offset from UTC in seconds. The parameter dst is used to declare this zone as daylight savings time.
If #name
is nil
, the formatted #offset
will be used as #name
(see #format
).
Raises InvalidTimezoneOffsetError
if seconds is outside the supported value range -86_400..86_400
seconds (-24:00
to +24:00
).
Prints #offset
to io in the format +HH:mm:ss
. When with_colon is false
, the format is +HHmmss
.
When with_seconds is false
, seconds are omitted; when :auto
, seconds are omitted if 0
.
Returns the #offset
formatted as +HH:mm:ss
. When with_colon is false
, the format is +HHmmss
.
When with_seconds is false
, seconds are omitted; when :auto
, seconds are omitted if 0
.
© 2012–2020 Manas Technology Solutions.
Licensed under the Apache License, Version 2.0.
https://crystal-lang.org/api/0.35.1/Time/Location/Zone.html