- java.time - Home
- java.time - Clock
- java.time - Duration
- java.time - Instant
- java.time - LocalDate
- java.time - LocalDateTime
- java.time - LocalTime
- java.time - MonthDay
- java.time - OffsetDateTime
- java.time - OffsetTime
- java.time - Period
- java.time - Year
- java.time - YearMonth
- java.time - ZonedDateTime
- java.time - ZoneId
- java.time - ZoneOffset
- java.time Package Enums
- java.time - Month
- java.time Useful Resources
- java.time - Discussion
java.time.Clock.getZone() Method Example
Description
The java.time.Clock.getZone() method gets the time-zone being used to create dates and times.
Declaration
Following is the declaration for java.time.Clock.getZone() method.
public abstract ZoneId getZone()
Return Value
the time-zone being used to interpret instants, not null.
Example
The following example shows the usage of java.time.Clock.getZone() method.
package com.tutorialspoint;
import java.time.Clock;
public class ClockDemo {
public static void main(String[] args) {
Clock clock = Clock.systemDefaultZone();
Clock clock1 = Clock.systemUTC();
System.out.println("Clock 1 Zone: " + clock.getZone());
System.out.println("Clock 2 Zone: " + clock1.getZone());
}
}
Let us compile and run the above program, this will produce the following result −
Clock 1 Zone: Asia/Calcutta Clock 2 Zone: Z
Advertisements