java.time.ZoneOffset. ofHoursMinutesSeconds() Method Example



Description

The java.time.ZoneOffset.ofHoursMinutesSeconds(int hours, int minutes, int seconds) method obtains an instance of ZoneOffset using an offset in hours, minutes and seconds.

Declaration

Following is the declaration for java.time.ZoneOffset.ofHoursMinutesSeconds(int hours, int minutes, int seconds) method.

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

Parameters

  • hours − the time-zone offset in hours, from -18 to +18.

  • minutes − the time-zone offset in minutes, from 0 to ±59, sign matches hours.

  • seconds − the time-zone offset in seconds, from 0 to ±59, sign matches hours and minutes.

Return Value

the zone-offset, not null.

Exceptions

DateTimeException − if the offset is not in the required range.

Example

The following example shows the usage of java.time.ZoneOffset.ofHoursMinutesSeconds(int hours, int minutes, int seconds) method.

package com.tutorialspoint;

import java.time.ZoneOffset;

public class ZoneOffsetDemo {
   public static void main(String[] args) {
 
      ZoneOffset zone = ZoneOffset.ofHoursMinutesSeconds(5,30,20);
      System.out.println(zone);  
   }
}

Let us compile and run the above program, this will produce the following result −

+05:30:20
Advertisements