Friday, January 30, 2026
HomeLanguagesJavaZoneOffsetTransitionRule getLocalTime() method in Java with Example

ZoneOffsetTransitionRule getLocalTime() method in Java with Example

The getLocalTime() method of java.time.zone.ZoneOffsetTransitionRule class is used to get the object of local time with respect to which the transition took place.

Syntax:

public LocalTime getLocalTime()

Parameter: this method does not accept any parameter.

Return Value: This method returns the object of local time with respect to which the transition is going to take place.

Below are the examples to illustrate the getLocalTime() method:

Example 1:




// Java program to demonstrate
// getLocalTime() method
  
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.zone.*;
  
public class GFG {
    public static void main(String[] argv)
    {
  
        // creating and initializing
        // ZoneOffsetTransitionRule Object
        ZoneOffsetTransitionRule zonetrans1
            = ZoneOffsetTransitionRule
                  .of(
                      Month.JANUARY, 12,
                      DayOfWeek.SUNDAY,
                      LocalTime.of(03, 24, 45),
                      false,
                      ZoneOffsetTransitionRule
                          .TimeDefinition
                          .STANDARD,
                      ZoneOffset.ofTotalSeconds(8),
                      ZoneOffset.ofTotalSeconds(10),
                      ZoneOffset.ofTotalSeconds(12));
  
        // getting object of local time
        // by using getLocalTime() method
        LocalTime loc
            = zonetrans1.getLocalTime();
  
        // display the result
        System.out.println(
            "Local Time : " + loc);
    }
}


Output:

Local Time : 03:24:45

Example 2:




// Java program to demonstrate
// getLocalTime() method
  
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.zone.*;
  
public class GFG {
    public static void main(String[] argv)
    {
  
        // creating and initializing
        // ZoneOffsetTransitionRule Object
        ZoneOffsetTransitionRule zonetrans1
            = ZoneOffsetTransitionRule
                  .of(
                      Month.JANUARY, 12,
                      DayOfWeek.SUNDAY,
                      LocalTime.of(04, 40, 45),
                      false,
                      ZoneOffsetTransitionRule
                          .TimeDefinition
                          .STANDARD,
                      ZoneOffset.ofTotalSeconds(8),
                      ZoneOffset.ofTotalSeconds(10),
                      ZoneOffset.ofTotalSeconds(12));
  
        // getting object of local time
        // by using getLocalTime() method
        LocalTime loc = zonetrans1.getLocalTime();
  
        // display the result
        System.out.println("Local Time : " + loc);
    }
}


Output:

Local Time : 04:40:45

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/zone/ZoneOffsetTransitionRule.html#getLocalTime–

RELATED ARTICLES

Most Popular

Dominic
32478 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6987 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6917 POSTS0 COMMENTS