final class ZoneRegion extends ZoneId with Serializable
A geographical region where the same time-zone rules apply.
Time-zone information is categorized as a set of rules defining when and how the offset from UTC/Greenwich changes. These rules are accessed using identifiers based on geographical regions, such as countries or states. The most common region classification is the Time Zone Database (TZDB), which defines regions such as 'Europe/Paris' and 'Asia/Tokyo'.
The region identifier, modeled by this class, is distinct from the
underlying rules, modeled by ZoneRules
.
The rules are defined by governments and change frequently.
By contrast, the region identifier is well-defined and long-lived.
This separation also allows rules to be shared between regions if appropriate.
Specification for implementors
This class is immutable and thread-safe.
- Alphabetic
- By Inheritance
- ZoneRegion
- ZoneId
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(obj: Any): Boolean
Checks if this time-zone ID is equal to another time-zone ID.
Checks if this time-zone ID is equal to another time-zone ID.
The comparison is based on the ID.
- obj
the object to check, null returns false
- returns
true if this is equal to the other time-zone ID
- Definition Classes
- ZoneId → AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
getDisplayName(style: TextStyle, locale: Locale): String
Gets the textual representation of the zone, such as 'British Time' or '+02:00'.
Gets the textual representation of the zone, such as 'British Time' or '+02:00'.
This returns the textual name used to identify the time-zone ID, suitable for presentation to the user. The parameters control the style of the returned text and the locale.
If no textual mapping is found then the
full ID
is returned.- style
the length of the text required, not null
- locale
the locale to use, not null
- returns
the text value of the zone, not null
- Definition Classes
- ZoneId
-
def
getId: String
Gets the unique time-zone ID.
Gets the unique time-zone ID.
This ID uniquely defines this object. The format of an offset based ID is defined by
ZoneOffset#getId()
.- returns
the time-zone unique ID, not null
- Definition Classes
- ZoneRegion → ZoneId
-
def
getRules: ZoneRules
Gets the time-zone rules for this ID allowing calculations to be performed.
Gets the time-zone rules for this ID allowing calculations to be performed.
The rules provide the functionality associated with a time-zone, such as finding the offset for a given instant or local date-time.
A time-zone can be invalid if it is deserialized in a Java Runtime which does not have the same rules loaded as the Java Runtime that stored it. In this case, calling this method will throw a
ZoneRulesException
.The rules are supplied by
ZoneRulesProvider
. An advanced provider may support dynamic updates to the rules without restarting the Java Runtime. If so, then the result of this method may change over time. Each individual call will be still remain thread-safe.ZoneOffset
will always return a set of rules where the offset never changes.- returns
the rules, not null
- Definition Classes
- ZoneRegion → ZoneId
- Exceptions thrown
ZoneRulesException
if no rules are available for this ID
-
def
hashCode(): Int
A hash code for this time-zone ID.
A hash code for this time-zone ID.
- returns
a suitable hash code
- Definition Classes
- ZoneId → AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
normalized: ZoneId
Normalizes the time-zone ID, returning a
ZoneOffset
where possible.Normalizes the time-zone ID, returning a
ZoneOffset
where possible.The returns a normalized
ZoneId
that can be used in place of this ID. The result will haveZoneRules
equivalent to those returned by this object, however the ID returned bygetId()
may be different.The normalization checks if the rules of this
ZoneId
have a fixed offset. If they do, then theZoneOffset
equal to that offset is returned. Otherwisethis
is returned.- returns
the time-zone unique ID, not null
- Definition Classes
- ZoneId
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
Outputs this zone as a
String
, using the ID.Outputs this zone as a
String
, using the ID.- returns
a string representation of this time-zone ID, not null
- Definition Classes
- ZoneId → AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()