Open In App

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

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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:

  • hours: which is int hours to be converted into an ZoneOffset instance. Its range is +18 to -18
  • minutes: which is int minutes to be converted into an ZoneOffset instance. Its range is -59 to +59
  • seconds: which is int seconds to be converted into an ZoneOffset instance. Its range is -59 to +59

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



Last Updated : 11 Dec, 2018
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads