Open In App

ZoneOffset ofHoursMinutesSeconds(int, int, int) method in Java with Examples

The ofHoursMinutesSeconds(int, int, int) method of ZoneOffset Class in java.time package is used to obtain an instance of ZoneOffset using the offset in hours, minutes and seconds passed as the parameter. This method takes the hours, minutes and seconds as parameter in the form of int and converts it into the ZoneOffset.

Syntax:



public static ZoneOffset
  ofHoursMinutesSeconds(int hours, 
                        int minutes,  
                        int seconds)

Parameters: This method accepts 3 parameters:

Return Value: This method returns a ZoneOffset instance parsed from the specified hours, minutes and seconds.



Exception: This method throws DateTimeException if the hours, minutes and seconds is invalid.

Below examples illustrate the ZoneOffset.ofHoursMinutesSeconds() method:

Example 1:




// Java code to illustrate ofHoursMinutesSeconds() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Get the hours, minutes and seconds
        int hours = 5;
        int minutes = 20;
        int seconds = 50;
  
        // ZoneOffset using ofHoursMinutesSeconds() method
        ZoneOffset zoneOffset
            = ZoneOffset
                  .ofHoursMinutesSeconds(hours,
                                         minutes,
                                         seconds);
  
        System.out.println(zoneOffset);
    }
}

Output:
+05:20:50

Example 2: To demonstrate DateTimeException




// Java code to illustrate ofHoursMinutesSeconds() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Get the invalid hours, minutes and seconds
        int hours = 20;
        int minutes = 5;
        int seconds = 0;
  
        try {
            // ZoneOffset using ofHoursMinutesSeconds() method
            ZoneOffset zoneOffset
                = ZoneOffset
                      .ofHoursMinutesSeconds(hours,
                                             minutes,
                                             seconds);
        }
  
        catch (Exception e) {
            System.out.println(e);
        }
    }
}

Output:
java.time.DateTimeException:
 Zone offset hours not in valid range:
 value 20 is not in the range -18 to 18

Reference: Oracle Doc


Article Tags :