java.time.ZoneOffset.ofHoursMinutes() Method Example



Description

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

Declaration

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

public static ZoneOffset ofHoursMinutes(int hours, int minutes)

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.

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.ofHoursMinutes(int hours, int minutes) method.

package com.tutorialspoint;

import java.time.ZoneOffset;

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

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

+05:30
Advertisements