java.time.ZoneOffset.ofHours() Method Example



Description

The java.time.ZoneOffset.ofHours(int hours) method obtains an instance of ZoneOffset using an offset in hours.

Declaration

Following is the declaration for java.time.ZoneOffset.ofHours(int hours) method.

public static ZoneOffset ofHours(int hours)

Parameters

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

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.ofHours(String hours) method.

package com.tutorialspoint;

import java.time.ZoneOffset;

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

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

+05:00
Advertisements