A [[Java.Time.Clock]] providing access to the current instant, date, and time using the user's time-zone.
A [[Java.Time.LocalDate]] date-time object that represents a date using the user's time-zone.
A [[Java.Time.LocalDateTime]] date-time object that represents a date-time using the user's time-zone. Represented to nanosecond precision.
A [[Java.Time.LocalTime]] date-time object that represents a time, often viewed as hour-minute-second. Time is represented to nanosecond precision.
A current date-time from the system clock in the default time-zone.
A [[Java.Time.OffsetDateTime]] which is a [[Java.Time.Instant]] plus an offset from UTC/Greenwich, which allows the local date-time to be obtained. ZonedDateTime adds full time-zone rules.
A time with an offset from UTC/Greenwich in the ISO-8601 calendar system, such as 10:15:30+01:00.
The current year in the ISO-8601 calendar system, such as 2019.
The current year and month in the ISO-8601 calendar system, such as 2007-12.
Returns the [[Java.Time.ZoneId]] that represents the users time zone.
Represents times using the user's time zone.
Example: ```javascript const userTimeObj = userTime; ```